(toolCallId: string)
| 17 | |
| 18 | // Background process functions (existing) |
| 19 | export function markProcessAsBackgrounded(toolCallId: string): void { |
| 20 | processTerminalBackgroundStates.set(toolCallId, true); |
| 21 | } |
| 22 | |
| 23 | export function isProcessBackgrounded(toolCallId: string): boolean { |
| 24 | return processTerminalBackgroundStates.has(toolCallId); |
no test coverage detected