Re-export from other module
export {a, b as wasd} from "./other-module"
export * from "./some-module.mjs"
export * as wasd from "./some-module"
Re-export from other module
export {a, b as wasd} from "./other-module"
export * from "./some-module.mjs"
export * as wasd from "./some-module"