setTimeout()
Schedules execution of handler once after the expiration of interval.
Function Definition
ts
function setTimeout(handler: (...args: any[]) => void, miliseconds: number): number;
Arguments
- handler: (...args: any[]) => void
- miliseconds: number
Returns
- number
Documentation
No Documentation Provided Yet