Timers that can be overridden with platform specific implementations that ensure that they are fired. These should be used when it is critical that the timer fires on time.

Constructors

Properties

clearInterval: ((...args: [intervalId: string | number | Timeout]) => void) = ...
clearTimeout: ((...args: [timeoutId: string | number | Timeout]) => void) = ...
setInterval: ((...args: [callback: ((args: void) => void), ms?: number]) => Timeout) = ...
setTimeout: ((...args: [callback: ((args: void) => void), ms?: number]) => Timeout) = ...