* Gets the current status of a task. * * @param taskId - The task identifier * @returns The task object * @throws If the task does not exist
(taskId: string)
| 195 | * @throws If the task does not exist |
| 196 | */ |
| 197 | getTask(taskId: string): Promise<Task>; |
| 198 | |
| 199 | /** |
| 200 | * Stores the result of a task and sets its final status. |
no outgoing calls