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

    Interface GroupedListSection<TItem>

    One visible GroupedList section.

    interface GroupedListSection<TItem extends GroupedListItem = GroupedListItem> {
        id: string;
        items: readonly TItem[];
        title: string;
    }

    Type Parameters

    Index

    Properties

    Properties

    id: string

    Stable section identifier.

    items: readonly TItem[]

    Ordered section items.

    title: string

    Human-readable section heading.