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