(...params: TParams)
| 128 | } |
| 129 | |
| 130 | run(...params: TParams) { |
| 131 | this.runAsync(...params).catch((error) => { |
| 132 | if (!this.options.onError) { |
| 133 | console.error(error); |
| 134 | } |
| 135 | }); |
| 136 | } |
| 137 | |
| 138 | cancel() { |
| 139 | this.count += 1; |
no test coverage detected