(params: KillParams)
| 318 | } |
| 319 | |
| 320 | export async function killRuntimePty(params: KillParams): Promise<{ ok: boolean }> { |
| 321 | return handleKill(params) |
| 322 | } |
| 323 | |
| 324 | export async function reconnectRuntimePty(params: ReconnectParams): Promise<RuntimeReconnectResponse> { |
| 325 | const p = activePtys.get(params.ptyId) |
no test coverage detected