( toolCallId: string, )
| 50 | } |
| 51 | |
| 52 | export function getRunningProcess( |
| 53 | toolCallId: string, |
| 54 | ): ChildProcess | undefined { |
| 55 | const info = processTerminalForegroundStates.get(toolCallId); |
| 56 | return info?.process; |
| 57 | } |
| 58 | |
| 59 | export function updateProcessOutput(toolCallId: string, output: string): void { |
| 60 | const info = processTerminalForegroundStates.get(toolCallId); |
no test coverage detected