(taskId: string)
| 3273 | } |
| 3274 | |
| 3275 | public resumeTask(taskId: string): void { |
| 3276 | // Use the existing showTaskWithId method which handles both current and |
| 3277 | // historical tasks. |
| 3278 | this.showTaskWithId(taskId).catch((error) => { |
| 3279 | this.log(`Failed to resume task ${taskId}: ${error.message}`) |
| 3280 | }) |
| 3281 | } |
| 3282 | |
| 3283 | // Modes |
| 3284 |
nothing calls this directly
no test coverage detected