(taskId: string, content: string)
| 266 | * Creates the file if it doesn't exist. |
| 267 | */ |
| 268 | export function appendTaskOutput(taskId: string, content: string): void { |
| 269 | getOrCreateOutput(taskId).append(content) |
| 270 | } |
| 271 | |
| 272 | /** |
| 273 | * Wait for all pending writes for a task to complete. |
no test coverage detected