* Cancels a timeout previously established by calling setTimeout(). * @param timeoutID - ID of the timeout to be cancelled
(timeoutID: number)
| 188 | * @param timeoutID - ID of the timeout to be cancelled |
| 189 | */ |
| 190 | clearTimeout(timeoutID: number) { |
| 191 | if (timeoutID > 0) { |
| 192 | defer(() => { |
| 193 | this.clearTimer(timeoutID); |
| 194 | }, this); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * cancels the timed, repeating action which was previously established by a call to setInterval(). |
nothing calls this directly
no test coverage detected