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

    Interface RenderSelectionSummaryOptions<TAction>

    Options accepted by renderSelectionSummary.

    interface RenderSelectionSummaryOptions<
        TAction extends SelectionSummaryAction = SelectionSummaryAction,
    > {
        actions?: readonly TAction[];
        activeActionId?: string;
        characters?: ActionBarCharacters;
        detail?: string;
        noun?: string;
        selectedCount: number;
        totalCount?: number;
        width: number;
    }

    Type Parameters

    Index

    Properties

    actions?: readonly TAction[]
    activeActionId?: string
    characters?: ActionBarCharacters
    detail?: string

    Optional context appended after the selection count.

    noun?: string

    Singular noun for a selected value.

    'item'

    selectedCount: number

    Number of selected items.

    totalCount?: number

    Total selectable items, when known.

    width: number