TypeScript/tests/cases/compiler/internalAliasInitializedModule.ts

12 lines
177 B
TypeScript
Raw Normal View History

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