blessed-components - v1.20.0
    Preparing search index...

    Interface RenderCommandOutputOptions

    Options accepted by renderCommandOutput.

    interface RenderCommandOutputOptions {
        command: string;
        exitCode?: number;
        height?: number;
        output?: readonly string[];
        status?: CommandOutputStatus;
        width?: number;
    }
    Index

    Properties

    command: string

    Command label, never executed by this renderer.

    exitCode?: number

    Exit code when command completed.

    height?: number

    Maximum rendered height.

    output?: readonly string[]

    Output lines.

    Current status.

    width?: number

    Maximum terminal-cell width of each line.