Interface TransferQuickPick

interface TransferQuickPick {
    activeItems?: readonly QuickPickItem[];
    busy?: boolean;
    buttons?: TransferQuickInputButton[];
    canSelectMany?: boolean;
    enabled?: boolean;
    id: number;
    ignoreFocusOut?: boolean;
    items?: TransferQuickPickItem[];
    matchOnDescription?: boolean;
    matchOnDetail?: boolean;
    placeholder?: string;
    selectedItems?: readonly QuickPickItem[];
    sortByLabel?: boolean;
    type?: "quickPick";
    value?: string;
    visible?: boolean;
}

Hierarchy (view full)

Properties

activeItems?: readonly QuickPickItem[]
busy?: boolean
canSelectMany?: boolean
enabled?: boolean
id: number
ignoreFocusOut?: boolean
matchOnDescription?: boolean
matchOnDetail?: boolean
placeholder?: string
selectedItems?: readonly QuickPickItem[]
sortByLabel?: boolean
type?: "quickPick"
value?: string
visible?: boolean