TypeScript/tests/cases/compiler/importDeclWithExportModifierAndExportAssignment.ts
2014-07-12 17:30:19 -07:00

7 lines
97 B
TypeScript

//@module: commonjs
module x {
interface c {
}
}
export import a = x.c;
export = x;