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

21 lines
284 B
Plaintext

=== tests/cases/compiler/internalAliasWithDottedNameEmit.ts ===
module a.b.c {
>a : typeof a
>b : typeof b
>c : typeof c
export var d;
>d : any
}
module a.e.f {
>a : typeof a
>e : e
>f : f
import g = b.c;
>g : typeof c
>b : typeof c
>c : typeof c
}