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

16 lines
186 B
TypeScript

// @module: commonjs
// @target: ES5
// @filename: m1.ts
export default function foo() {
}
export default function bar() {
}
// @filename: m2.ts
import Entity from "./m1"
Entity();