TypeScript/tests/cases/compiler/exportDeclarationWithModuleSpecifierNameOnNextLine1.ts
Daniel Rosenwasser 7a0b224ba5 Added tests.
2015-07-10 16:20:12 -07:00

20 lines
293 B
TypeScript

// @module: commonjs
// @filename: t1.ts
export var x = "x";
// @filename: t2.ts
export { x } from
"./t1";
// @filename: t3.ts
export { } from
"./t1";
// @filename: t4.ts
export { x as a } from
"./t1";
// @filename: t5.ts
export { x as a, } from
"./t1";