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

    Interface CommandLogData<TItem>

    interface CommandLogData<TItem extends CommandLogItem = CommandLogItem> {
        activeId?: string;
        capabilities?: Pick<TerminalCapabilities, "unicode">;
        characters?: CommandLogCharacters;
        items: readonly TItem[];
        newestFirst?: boolean;
        onActiveIdChange?: (id: string) => void;
        onRetry?: (item: TItem) => void;
    }

    Type Parameters

    Index

    Properties

    activeId?: string
    capabilities?: Pick<TerminalCapabilities, "unicode">
    items: readonly TItem[]
    newestFirst?: boolean
    onActiveIdChange?: (id: string) => void
    onRetry?: (item: TItem) => void