(toolCallId: string)
| 21 | } |
| 22 | |
| 23 | export function isProcessBackgrounded(toolCallId: string): boolean { |
| 24 | return processTerminalBackgroundStates.has(toolCallId); |
| 25 | } |
| 26 | |
| 27 | export function removeBackgroundedProcess(toolCallId: string): void { |
| 28 | processTerminalBackgroundStates.delete(toolCallId); |
no outgoing calls
no test coverage detected