Theia API Documentation v1.69.0
    Preparing search index...
    interface QuickInputButtonHandle {
        alwaysVisible?: boolean;
        handle: number;
        iconClass?: string;
        location?: number;
        toggle?: { checked: boolean };
        tooltip?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    alwaysVisible?: boolean

    Whether the button should be visible even when the user is not hovering.

    handle: number
    iconClass?: string
    location?: number

    The location where the button should be rendered. @monaco-uplift: consider using a typed enum matching Monaco's QuickInputButtonLocation instead of number.

    toggle?: { checked: boolean }

    When present, indicates that the button is a toggle button.

    tooltip?: string