(params: WriteParams)
| 310 | } |
| 311 | |
| 312 | export async function writeRuntimePty(params: WriteParams): Promise<{ ok: boolean }> { |
| 313 | return handleWrite(params) |
| 314 | } |
| 315 | |
| 316 | export async function resizeRuntimePty(params: ResizeParams): Promise<{ ok: boolean }> { |
| 317 | return handleResize(params) |
nothing calls this directly
no test coverage detected