Theia API Documentation v1.65.0
    Preparing search index...
    interface LanguageQuickPickItem {
        alwaysShow?: boolean;
        ariaLabel?: string;
        buttons?: QuickInputButton[];
        description?: string;
        detail?: string;
        highlights?: QuickPickItemHighlights;
        iconClasses?: string[];
        id?: string;
        keySequence?: KeySequence;
        label: string;
        languageId: string;
        languageName?: string;
        languagePack?: boolean;
        localizedLanguageName?: string;
        meta?: string;
        type?: "item";
        execute?(): Promise<void>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    alwaysShow?: boolean
    ariaLabel?: string
    buttons?: QuickInputButton[]
    description?: string
    detail?: string
    iconClasses?: string[]
    id?: string
    keySequence?: KeySequence
    label: string
    languageId: string
    languageName?: string
    languagePack?: boolean
    localizedLanguageName?: string
    meta?: string
    type?: "item"

    Methods