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

11 lines
177 B
TypeScript

//@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();