(sessionId: string, terminalId: string)
| 92 | write(sessionId: string, terminalId: string, data: string): Promise<void>; |
| 93 | resize(sessionId: string, terminalId: string, cols: number, rows: number): Promise<void>; |
| 94 | close(sessionId: string, terminalId: string): Promise<{ closed: true }>; |
| 95 | } |
| 96 | |
| 97 | export interface WsConnectionOptions { |
no outgoing calls
no test coverage detected