This commit is contained in:
Cyanoure
2024-09-15 14:46:30 +02:00
parent 2ab803c2b6
commit a3630d485d

View File

@ -1,9 +1,11 @@
import test from "./test";
export default function startTest() {
let i: number = 0;
setInterval(() => {
i++;
test(i);
}, 1000);
export default class NodeTest {
static startTest() {
let i: number = 0;
setInterval(() => {
i++;
test(i);
}, 1000);
}
}