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

    Interface CreateLogViewerStateOptions

    Options accepted by createLogViewerState.

    interface CreateLogViewerStateOptions {
        defaultPaused?: boolean;
        entries?: readonly LogEntry[];
        follow?: boolean;
        maxEntries?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    defaultPaused?: boolean

    Whether append operations are queued instead of displayed.

    entries?: readonly LogEntry[]

    Initial visible entries.

    follow?: boolean

    Whether visible offset follows appended entries.

    true

    maxEntries?: number

    Maximum retained visible entries.

    1000