* Schedule `callback` to be executed when the current application or browser is considered idle. * * @returns an id which allows the scheduled callback to be cancelled before it executes.
(callback: (deadline?: IdleDeadline) => void, options?: IdleRequestOptions)
| 44 | * @returns an id which allows the scheduled callback to be cancelled before it executes. |
| 45 | */ |
| 46 | requestOnIdle(callback: (deadline?: IdleDeadline) => void, options?: IdleRequestOptions): number; |
| 47 | |
| 48 | /** |
| 49 | * Cancel a previously scheduled callback using the id associated with it. |
no outgoing calls
no test coverage detected