mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
12 lines
163 B
JavaScript
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";
|