swc/tests/tsc-references/es6/modules/exportBinding/input.ts/es2015.2.minified/output.js

12 lines
163 B
JavaScript

export { x };
export { x as xx };
export default x;
const x = "x";
export { Y as Z };
class Y {
}
export { y };
export { y as yy };
export default y;
var y = "y";