Interface TerminalDimensions

The dimensions of a terminal.

interface TerminalDimensions {
    columns: number;
    rows: number;
}

Properties

Properties

columns: number

The number of columns of the terminal.

rows: number

The number of rows of the terminal.