(sessionId: string)
| 97 | } |
| 98 | |
| 99 | export async function stopRunnerSession(sessionId: string): Promise<boolean> { |
| 100 | const result = await runnerPost('/stop-session', { sessionId }); |
| 101 | return result.success || false; |
| 102 | } |
| 103 | |
| 104 | export async function spawnRunnerSession(directory: string, sessionId?: string): Promise<any> { |
| 105 | const result = await runnerPost('/spawn-session', { directory, sessionId }); |
no test coverage detected