* cancels the timed, repeating action which was previously established by a call to setInterval(). * @param intervalID - ID of the interval to be cleared
(intervalID: number)
| 200 | * @param intervalID - ID of the interval to be cleared |
| 201 | */ |
| 202 | clearInterval(intervalID: number) { |
| 203 | if (intervalID > 0) { |
| 204 | defer(() => { |
| 205 | this.clearTimer(intervalID); |
| 206 | }, this); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | /** |
| 211 | * Return the current timestamp in milliseconds <br> |
no test coverage detected