TypeScript/tests/cases/compiler/internalAliasInitializedModuleInsideTopLevelModuleWithoutExport.ts

11 lines
177 B
TypeScript
Raw Normal View History

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