TypeScript/tests/baselines/reference/internalAliasInterface.types
2014-08-15 14:37:48 -07:00

23 lines
243 B
Plaintext

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