TypeScript/tests/baselines/reference/declarationEmitImportInExportAssignmentModule.types
2015-04-15 16:44:20 -07:00

24 lines
345 B
Plaintext

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