Idk? Build?

This commit is contained in:
Cyanoure
2024-09-15 14:40:14 +02:00
parent fca0f47fb0
commit 79e34f051d
8 changed files with 66 additions and 3 deletions

17
dist/index.mjs vendored Normal file
View File

@ -0,0 +1,17 @@
// src/test.ts
function test(i) {
console.log(`Hello, World! (#${i})`);
}
// src/index.ts
function startTest() {
let i = 0;
setInterval(() => {
i++;
test(i);
}, 1e3);
}
export {
startTest as default
};
//# sourceMappingURL=index.mjs.map