TypeScript/tests/cases/compiler/internalAliasWithDottedNameEmit.ts

8 lines
105 B
TypeScript
Raw Normal View History

// @declaration: true
2014-07-13 01:04:16 +02:00
module a.b.c {
export var d;
}
module a.e.f {
import g = b.c;
}