(processId: string)
| 588 | } |
| 589 | |
| 590 | export async function killRuntimeProcess(processId: string): Promise<KillResponse> { |
| 591 | return handleKill(processId) |
| 592 | } |
| 593 | |
| 594 | export async function listRuntimeProcesses(): Promise<ListResponse> { |
| 595 | return handleList() |
nothing calls this directly
no test coverage detected