TypeScript/tests/cases/compiler/internalAliasVarInsideTopLevelModuleWithExport.ts

10 lines
135 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//@module: amd
// @declaration: true
export module a {
export var x = 10;
}
export import b = a.x;
export var bVal = b;