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

    Interface DefineLanguageStatusItemOptions

    Options for defineLanguageStatusItem. id must be unique across the compiled application; duplicate declarations fail preflight.

    interface DefineLanguageStatusItemOptions {
        accessibilityInformation?: AccessibilityInformationLike;
        busy?: boolean;
        command?: CommandLinkLike;
        detail?: string;
        id: string;
        name: string;
        selector: LanguageSelectorLike;
        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.

    id: string

    Unique identifier for the item.

    name: string

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

    Editors whose language matches this selector show the item.

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

    text: string

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