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

    Interface DefineStatusBarItemOptions

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

    interface DefineStatusBarItemOptions {
        accessibilityInformation?: AccessibilityInformationLike;
        alignment?: "left" | "right";
        backgroundColor?: "error" | "warning";
        command?: string | CommandLinkLike;
        id: string;
        priority?: number;
        text: string;
        tooltip?: TooltipLike;
        visible?: boolean;
    }

    Hierarchy (View Summary)

    Index
    accessibilityInformation?: AccessibilityInformationLike

    Accessibility information.

    alignment?: "left" | "right"

    Alignment chosen when the native item is created (default: 'left').

    backgroundColor?: "error" | "warning"

    Background color ('warning' or 'error').

    command?: string | CommandLinkLike

    Command to execute on click.

    id: string

    Unique identifier for the status bar item.

    priority?: number

    Creation-time priority (higher = closer to the alignment edge).

    text: string

    Display text. Supports $(icon-name) codicon syntax.

    tooltip?: TooltipLike

    Tooltip text.

    visible?: boolean

    Creation-time visibility (default: true).