Interface PickOptions<T>

interface PickOptions<T> {
    activeItem?: T | Promise<T>;
    autoFocusOnList?: boolean;
    canPickMany?: boolean;
    contextKey?: string;
    ignoreFocusLost?: boolean;
    matchOnDescription?: boolean;
    matchOnDetail?: boolean;
    matchOnLabel?: boolean;
    onDidFocus?: ((entry) => void);
    placeHolder?: string;
    title?: string;
}

Type Parameters

Properties

activeItem?: T | Promise<T>
autoFocusOnList?: boolean
canPickMany?: boolean
contextKey?: string
ignoreFocusLost?: boolean
matchOnDescription?: boolean
matchOnDetail?: boolean
matchOnLabel?: boolean
onDidFocus?: ((entry) => void)

Type declaration

    • (entry): void
    • Parameters

      • entry: T

      Returns void

placeHolder?: string
title?: string