TypeScript/tests/baselines/reference/internalAliasWithDottedNameEmit.types
2014-08-28 12:40:58 -07:00

21 lines
296 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 : unknown
>f : unknown
import g = b.c;
>g : typeof g
>b : typeof b
>c : typeof g
}