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

    Interface LanguageStatusItemOptions

    Options accepted by both createLanguageStatusItem/defineLanguageStatusItem (as the initial state) and ManagedLanguageStatusItem.update (as a partial patch, minus text, which update takes as its own first argument).

    interface LanguageStatusItemOptions {
        accessibilityInformation?: AccessibilityInformationLike;
        busy?: boolean;
        command?: CommandLinkLike;
        detail?: string;
        name: string;
        severity?: LanguageStatusItemSeverity;
        text: string;
    }

    Hierarchy (View Summary)

    Index
    accessibilityInformation?: AccessibilityInformationLike

    Accessibility information used when a screen reader interacts with this item.

    busy?: boolean

    Shows a busy indicator (default: false).

    command?: CommandLinkLike

    Command invoked when the item is clicked.

    detail?: string

    Optional human-readable detail, shown below text in the hover.

    name: string

    Short name shown in the "Language Status" hover, e.g. 'ESLint'.

    Icon/severity shown next to the item (default: 'info').

    text: string

    The text to show for the entry. Supports $(icon-name) codicon syntax.