function setInterval
Usage in Deno
```typescript import { setInterval } from "node:node__timers.d.ts"; ```
setInterval<TArgs extends any[]>(callback: (...args: TArgs) => void,ms?: number,...args: TArgs,): Timeout
Schedules repeated execution of `callback` every `delay` milliseconds.
When `delay` is larger than `2147483647` or less than `1`, the `delay` will be
set to `1`. Non-integer delays are truncated to an integer.
If `callback` is not a function, a `TypeError` will be thrown.
This method has a custom variant for promises that is available using `timersPromises.setInterval()`.
for use with [clearInterval](../.././node__timers.d.ts/~/clearInterval)