@hel-demo/mono-libs
Version:
hel-mono demo libs
35 lines (31 loc) • 629 B
JavaScript
import {
__export
} from "./chunk-J5LGTIGS.mjs";
// src/export.ts
var export_exports = {};
__export(export_exports, {
delay: () => delay,
hello: () => hello,
helloAsync: () => helloAsync
});
// src/utils/path/to/async-hello.ts
function delay(ms = 1e3) {
return new Promise((r) => setTimeout(r, ms));
}
async function helloAsync() {
await delay();
return "async hel hello v1.0.2";
}
// src/utils/index.ts
function hello() {
return "hel hello v1.0.3";
}
// src/index.ts
var index_default = export_exports;
export {
index_default as default,
delay,
hello,
helloAsync
};
//# sourceMappingURL=index.mjs.map