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

    Interface RenderCommandLogOptions<TItem>

    Options accepted by renderCommandLog.

    interface RenderCommandLogOptions<TItem extends CommandLogItem = CommandLogItem> {
        activeId?: string;
        characters?: CommandLogCharacters;
        height?: number;
        items: readonly TItem[];
        newestFirst?: boolean;
        width?: number;
    }

    Type Parameters

    Index

    Properties

    activeId?: string
    height?: number
    items: readonly TItem[]
    newestFirst?: boolean

    Display latest entries first without mutating items.

    width?: number