swc/tests/tsc-references/es6/modules/exportStar-amd/input.ts/es5.2.minified/output.js

13 lines
228 B
JavaScript
Raw Normal View History

import hello from "./t4";
export var x = 1;
export var y = 2;
export default "hello";
export function foo() {
}
var z, x = "x", y = "y";
export { x, y, z };
export * from "./t1";
export * from "./t2";
export * from "./t3";
"z";