(timerRef: TimerRef)
| 470 | } |
| 471 | |
| 472 | private _fakeClearTimer(timerRef: TimerRef) { |
| 473 | const uuid = this._timerConfig.refToId(timerRef); |
| 474 | |
| 475 | if (uuid) { |
| 476 | this._timers.delete(String(uuid)); |
| 477 | } |
| 478 | } |
| 479 | |
| 480 | private _fakeClearImmediate(uuid: TimerID) { |
| 481 | this._immediates = this._immediates.filter( |