TypeScript/tests/baselines/reference/declFileImportChainInExportAssignment.types
2014-08-18 19:56:03 -07:00

24 lines
336 B
Text

=== tests/cases/compiler/declFileImportChainInExportAssignment.ts ===
module m {
>m : typeof m
export module c {
>c : typeof c
export class c {
>c : c
}
}
}
import a = m.c;
>a : typeof c
>m : typeof m
>c : typeof c
import b = a;
>b : typeof c
>a : typeof c
export = b;
>b : typeof c