UI Headless Runtime API - v1.0.0
    Preparing search index...

    Interface CommandShortcut

    Configurable global command-palette shortcut.

    interface CommandShortcut {
        alt?: boolean;
        ctrlOrMeta?: boolean;
        key?: string;
        shift?: boolean;
    }
    Index

    Properties

    alt?: boolean

    Requires Alt when true.

    ctrlOrMeta?: boolean

    Requires Control on Windows/Linux or Meta on macOS.

    true

    key?: string

    KeyboardEvent key value.

    k

    shift?: boolean

    Requires Shift when true.