TypeScript/tests/baselines/reference/importDeclWithExportModifierInAmbientContext.types
2014-08-18 19:56:03 -07:00

19 lines
265 B
Text

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