(
sid: string,
terminalId: string,
options: TerminalControlOptions = {},
)
| 498 | } |
| 499 | |
| 500 | detachTerminal( |
| 501 | sid: string, |
| 502 | terminalId: string, |
| 503 | options: TerminalControlOptions = {}, |
| 504 | ): Promise<TerminalDetachResult> { |
| 505 | return this._sendWsControl<TerminalDetachResult>( |
| 506 | 'terminal_detach', |
| 507 | { session_id: sid, terminal_id: terminalId }, |
| 508 | options.timeoutMs, |
| 509 | ); |
| 510 | } |
| 511 | |
| 512 | writeTerminalInput( |
| 513 | sid: string, |
nothing calls this directly
no test coverage detected