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

20 lines
271 B
Plaintext

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