Namespaces
setInterval
function setInterval(
callback: Function,
milliseconds?: number, ...
args: any[]): number;Defined in: timer/index.d.ts:21
Calls a function repeatedly with a delay between each call.
Parameters
| Parameter | Type | Description |
|---|---|---|
callback | Function | The function to be called. |
milliseconds? | number | The delay between each function call. |
...args? | any[] | One or more parameter to use once the function is called. Defaults to no parameters. |
Returns
number
- Previous
- sanitizeModuleName
- Next
- setTimeout