TypeScript/tests/cases/compiler/internalAliasVarInsideTopLevelModuleWithoutExport.ts
2014-07-12 17:30:19 -07:00

10 lines
133 B
TypeScript

//@module: commonjs
// @declaration: true
export module a {
export var x = 10;
}
import b = a.x;
export var bVal = b;