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