MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / resizeTerminal

Method resizeTerminal

packages/server-e2e/src/client.ts:525–537  ·  view source on GitHub ↗
(
    sid: string,
    terminalId: string,
    cols: number,
    rows: number,
    options: TerminalControlOptions = {},
  )

Source from the content-addressed store, hash-verified

523 }
524
525 resizeTerminal(
526 sid: string,
527 terminalId: string,
528 cols: number,
529 rows: number,
530 options: TerminalControlOptions = {},
531 ): Promise<TerminalResizeResult> {
532 return this._sendWsControl<TerminalResizeResult>(
533 'terminal_resize',
534 { session_id: sid, terminal_id: terminalId, cols, rows },
535 options.timeoutMs,
536 );
537 }
538
539 closeTerminalControl(
540 sid: string,

Callers 1

mainFunction · 0.95

Calls 1

_sendWsControlMethod · 0.95

Tested by

no test coverage detected