Build with actions
Some checks failed
Build and Save Artifact / build (push) Failing after 0s

This commit is contained in:
Cyanoure
2024-09-15 16:06:59 +02:00
parent 974597fd16
commit 8b72c4d148
8 changed files with 18 additions and 73 deletions

19
dist/index.mjs vendored
View File

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