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