TypeScript/tests/baselines/reference/declFileExportImportChain2.types

39 lines
767 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/declFileExportImportChain2_d.ts ===
import c = require("declFileExportImportChain2_c");
2014-08-28 21:40:58 +02:00
>c : typeof c
2014-08-15 23:33:16 +02:00
export var x: c.b.m2.c1;
2014-08-25 19:36:12 +02:00
>x : c.b.m2.c1
2014-08-28 21:40:58 +02:00
>c : unknown
>b : unknown
>m2 : unknown
2014-08-25 19:36:12 +02:00
>c1 : c.b.m2.c1
2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/declFileExportImportChain2_a.ts ===
module m1 {
2014-08-28 21:40:58 +02:00
>m1 : typeof m1
2014-08-15 23:33:16 +02:00
export module m2 {
2014-08-28 21:40:58 +02:00
>m2 : typeof m2
2014-08-15 23:33:16 +02:00
export class c1 {
>c1 : c1
}
}
}
export = m1;
>m1 : typeof m1
=== tests/cases/compiler/declFileExportImportChain2_b.ts ===
import a = require("declFileExportImportChain2_a");
2014-08-28 21:40:58 +02:00
>a : typeof a
2014-08-15 23:33:16 +02:00
export = a;
2014-08-25 19:36:12 +02:00
>a : typeof a
2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/declFileExportImportChain2_c.ts ===
export import b = require("declFileExportImportChain2_b");
2014-08-28 21:40:58 +02:00
>b : typeof b
2014-08-15 23:33:16 +02:00