Interface MacOSKeyCodeCommand

A MacOS key code command.

interface MacOSKeyCodeCommand {
    description?: string;
    keyCode: MacOSKeyCodes | MacOSKeyCodes[];
    modifiers?: MacOSModifiers[];
    representation?: string;
}

Hierarchy (view full)

Properties

description?: string

Description of the action the key code performs.

The key code or key codes to send.

modifiers?: MacOSModifiers[]

List of modifier keys to press while sending the key code(s).

representation?: string

Symbolic representation of the key code and modifier keys this command uses.

""