The render data for a command palette item.

interface IItemRenderData {
    active: boolean;
    indices: null | readonly number[];
    item: CommandPalette.IItem;
}

Properties

Properties

active: boolean

Whether the item is the active item.

indices: null | readonly number[]

The indices of the matched characters in the label.

The command palette item to render.