Trevixal API
    Preparing search index...

    Interface CommandPalette

    interface CommandPalette {
        element: HTMLElement;
        isOpen: boolean;
        results: readonly PaletteCommand[];
        close(): void;
        destroy(): void;
        open(): void;
        runSelected(): void;
    }
    Index
    element: HTMLElement
    isOpen: boolean
    results: readonly PaletteCommand[]

    The commands matching the current query, in ranked order.

    • Returns void

    • Returns void

    • Returns void

    • Run the highlighted command and close.

      Returns void