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

    Interface ManagedLanguageStatusItem

    A managed language status item with a single update() entry point, mirroring ManagedStatusBarItem's shape. Methods are no-ops after dispose().

    interface ManagedLanguageStatusItem {
        dispose(): void;
        update(
            text: string,
            opts?: Partial<Omit<LanguageStatusItemOptions, "name">>,
        ): void;
    }
    Index
    • Updates the text and optionally any other property. name and the selector identify the item and cannot be changed after creation. Calls after disposal are ignored.

      Parameters

      • text: string

        New text to display

      • Optionalopts: Partial<Omit<LanguageStatusItemOptions, "name">>

        Other properties to update (detail, severity, busy, command, accessibility)

      Returns void