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

10 lines
131 B
TypeScript

//@module: amd
// @declaration: true
export module a {
export interface I {
}
}
import b = a.I;
export var x: b;