TypeScript/tests/baselines/reference/declFileImportChainInExportAssignment.types

25 lines
338 B
Text
Raw Normal View History

2014-08-28 01:58:31 +02:00
=== tests/cases/compiler/declFileImportChainInExportAssignment.ts ===
module m {
2014-08-28 21:40:58 +02:00
>m : typeof m
2014-08-28 01:58:31 +02:00
export module c {
2014-08-28 21:40:58 +02:00
>c : typeof m.c
2014-08-28 01:58:31 +02:00
export class c {
>c : c
}
}
}
import a = m.c;
2014-08-28 21:40:58 +02:00
>a : typeof a
2014-08-28 01:58:31 +02:00
>m : typeof m
>c : typeof a
import b = a;
2014-08-28 21:40:58 +02:00
>b : typeof a
2014-08-28 01:58:31 +02:00
>a : typeof a
export = b;
>b : typeof a