TypeScript/tests/baselines/reference/exportDefaultImportedType.js

16 lines
256 B
TypeScript
Raw Permalink Normal View History

//// [tests/cases/compiler/exportDefaultImportedType.ts] ////
//// [exported.ts]
type Foo = number;
export { Foo };
//// [main.ts]
import { Foo } from "./exported";
export default Foo;
//// [exported.js]
export {};
//// [main.js]
export {};