Interface CreateTerminalCommandInput

The input for CreateTerminalCommand.

interface CreateTerminalCommandInput {
    cols: number;
    editorSessionId: string;
    rows: number;
}

Hierarchy (View Summary)

Properties

cols: number

The terminal's initial width in columns, so the PTY opens at the right size.

editorSessionId: string

The editor session to provision the terminal in.

rows: number

The terminal's initial height in rows.