TypeScript/tests/baselines/reference/internalAliasInterface.types

23 lines
249 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/internalAliasInterface.ts ===
module a {
>a : any
2014-08-15 23:33:16 +02:00
export interface I {
>I : I
2014-08-15 23:33:16 +02:00
}
}
module c {
>c : typeof c
2014-08-15 23:33:16 +02:00
import b = a.I;
>b : any
>a : any
>I : b
2014-08-15 23:33:16 +02:00
export var x: b;
>x : b
>b : b
2014-08-15 23:33:16 +02:00
}