(params: StartScriptParams)
| 584 | } |
| 585 | |
| 586 | export async function startRuntimeScript(params: StartScriptParams): Promise<StartProcessResponse> { |
| 587 | return handleStartScript(params) |
| 588 | } |
| 589 | |
| 590 | export async function killRuntimeProcess(processId: string): Promise<KillResponse> { |
| 591 | return handleKill(processId) |
nothing calls this directly
no test coverage detected