(timeoutId: ManagedTimerId | undefined)
| 106 | } |
| 107 | |
| 108 | clearTimeout(timeoutId: ManagedTimerId | undefined): void { |
| 109 | this.#provider.clearTimeout(timeoutId) |
| 110 | } |
| 111 | |
| 112 | setInterval(callback: TimeoutCallback, delay: number): ManagedTimerId { |
| 113 | if (process.env.NODE_ENV !== 'production') { |
no outgoing calls
no test coverage detected