Interface OpenWithQuickPickItem

interface OpenWithQuickPickItem {
    alwaysShow?: boolean;
    ariaLabel?: string;
    buttons?: QuickInputButton[];
    description?: string;
    detail?: string;
    execute?: (() => void);
    handler: OpenWithHandler;
    highlights?: QuickPickItemHighlights;
    iconClasses?: string[];
    id?: string;
    keySequence?: KeySequence;
    label: string;
    meta?: string;
    type?: "item";
}

Hierarchy (view full)

Properties

alwaysShow?: boolean
ariaLabel?: string
buttons?: QuickInputButton[]
description?: string
detail?: string
execute?: (() => void)

Type declaration

    • (): void
    • Returns void

iconClasses?: string[]
id?: string
keySequence?: KeySequence
label: string
meta?: string
type?: "item"