TypeScript/tests/baselines/reference/importDeclWithExportModifierInAmbientContext.types
2014-08-15 14:37:48 -07:00

20 lines
265 B
Plaintext

=== tests/cases/compiler/importDeclWithExportModifierInAmbientContext.ts ===
declare module "m" {
module x {
>x : x
interface c {
>c : c
}
}
export import a = x.c;
>a : a
>x : c
>c : c
var b: a;
>b : c
>a : a
}