TypeScript/tests/baselines/reference/defaultNamedExportWithType3.js

10 lines
187 B
TypeScript

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