named-export.jsconst foo = "foo"; // 宣言済みのオブジェクトを名前つきエクスポートする export { foo };
named-export-declare.js// 宣言と同時に名前つきエクスポートする export function bar() { };