TypeScript/tests/cases/compiler/importDeclWithExportModifierInAmbientContext.ts

9 lines
125 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
declare module "m" {
module x {
interface c {
}
}
export import a = x.c;
var b: a;
}