TypeScript/tests/baselines/reference/defaultNamedExportWithType4.js

10 lines
173 B
TypeScript

//// [defaultNamedExportWithType4.ts]
interface Foo {}
const Foo = {};
export default Foo;
//// [defaultNamedExportWithType4.js]
const Foo = {};
export default Foo;