swc/crates/swc_ecma_parser/tests/tsc/jsDeclarationsExportSpecifierNonlocal.ts

11 lines
245 B
TypeScript

// @allowJs: true
// @checkJs: true
// @target: es5
// @outDir: ./out
// @declaration: true
// @filename: source.js
export class Thing {}
export class OtherThing {}
// @filename: index.js
export { Thing, OtherThing as default } from "./source";