(toolCallId: string)
| 64 | } |
| 65 | |
| 66 | export function removeRunningProcess(toolCallId: string): void { |
| 67 | processTerminalForegroundStates.delete(toolCallId); |
| 68 | } |
| 69 | |
| 70 | export async function killTerminalProcess(toolCallId: string): Promise<void> { |
| 71 | const processInfo = processTerminalForegroundStates.get(toolCallId); |
no test coverage detected