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

    Interface RenderCommandPaletteOptions<TItem>

    Options accepted by renderCommandPalette.

    interface RenderCommandPaletteOptions<
        TItem extends CommandPaletteItem = CommandPaletteItem,
    > {
        activeId?: string;
        characters?: CommandPaletteCharacters;
        emptyText?: string;
        height: number;
        items: readonly TItem[];
        offset?: number;
        placeholder?: string;
        query?: string;
        width: number;
    }

    Type Parameters

    Index

    Properties

    activeId?: string
    emptyText?: string
    height: number
    items: readonly TItem[]
    offset?: number
    placeholder?: string
    query?: string
    width: number