* Override this with the code necessary to cancel the action. * * @returns {Object} Promise that resolves when the action is cancelled.
()
| 179 | * @returns {Object} Promise that resolves when the action is cancelled. |
| 180 | */ |
| 181 | cancel(): Promise<void> { |
| 182 | return Promise.resolve(); |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Finish performing the action. |