mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
13 lines
228 B
JavaScript
13 lines
228 B
JavaScript
|
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";
|