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

23 lines
293 B
Plaintext

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