mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
12 lines
112 B
TypeScript
12 lines
112 B
TypeScript
const [a, b, c] = [
|
|
1,
|
|
2,
|
|
3
|
|
];
|
|
const mod = {
|
|
a: a,
|
|
b: b,
|
|
c: c
|
|
};
|
|
export { mod as foo };
|