11 lines
185 B
TypeScript
11 lines
185 B
TypeScript
import test from "./test";
|
|
|
|
export function startTest() {
|
|
console.log("Hello, World!");
|
|
let i: number = 0;
|
|
setInterval(() => {
|
|
i++;
|
|
test(i);
|
|
}, 1000);
|
|
}
|