@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface QuickPickStepConfig<S, V>

    Configuration accepted by quickpickStep.

    interface QuickPickStepConfig<S, V> {
        canPickMany?: boolean;
        items: (
            state: Readonly<S>,
        ) => readonly PickItem<V>[] | Promise<readonly PickItem<V>[]>;
        matchOnDescription?: boolean;
        matchOnDetail?: boolean;
        placeholder?: string;
        prompt?: string;
    }

    Type Parameters

    • S
    • V
    Index
    canPickMany?: boolean

    Allow selecting more than one item.

    items: (
        state: Readonly<S>,
    ) => readonly PickItem<V>[] | Promise<readonly PickItem<V>[]>

    Items to choose from. May be computed from the accumulated state of previous steps, and may be asynchronous — the picker opens immediately showing a busy indicator while this resolves.

    matchOnDescription?: boolean

    Include item descriptions when filtering (default: false).

    matchOnDetail?: boolean

    Include item details when filtering (default: false).

    placeholder?: string

    Placeholder text shown in the empty filter box.

    prompt?: string

    Instructional text shown below the input box and above the items.