TypeScript/tests/baselines/reference/internalAliasInterfaceInsideTopLevelModuleWithoutExport.types
2015-04-15 16:44:20 -07:00

18 lines
249 B
Text

=== tests/cases/compiler/internalAliasInterfaceInsideTopLevelModuleWithoutExport.ts ===
export module a {
>a : any
export interface I {
>I : I
}
}
import b = a.I;
>b : any
>a : any
>I : b
export var x: b;
>x : b
>b : b