Method
writeTerminalInput
(
sid: string,
terminalId: string,
data: string,
options: TerminalControlOptions = {},
)
Source from the content-addressed store, hash-verified
| 510 | } |
| 511 | |
| 512 | writeTerminalInput( |
| 513 | sid: string, |
| 514 | terminalId: string, |
| 515 | data: string, |
| 516 | options: TerminalControlOptions = {}, |
| 517 | ): Promise<TerminalInputResult> { |
| 518 | return this._sendWsControl<TerminalInputResult>( |
| 519 | 'terminal_input', |
| 520 | { session_id: sid, terminal_id: terminalId, data }, |
| 521 | options.timeoutMs, |
| 522 | ); |
| 523 | } |
| 524 | |
| 525 | resizeTerminal( |
| 526 | sid: string, |
Tested by
no test coverage detected