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

    Interface ListItem

    Minimum data required for one List row.

    Applications may extend this shape with metadata consumed by adapters or custom item formatters.

    interface ListItem {
        disabled?: boolean;
        id: string;
        label: string;
    }
    Index

    Properties

    Properties

    disabled?: boolean

    Whether navigation and selection must skip this item.

    id: string

    Stable identifier used for cursor and selection state.

    label: string

    Human-readable row content.