Interface WindowsKeyCodeCommand

A Windows key code command.

interface WindowsKeyCodeCommand {
    description?: string;
    keyCode: Key | Key[];
    modifiers?: Key[];
    representation?: string;
}

Hierarchy (view full)

Properties

description?: string

Description of the action the key code performs.

keyCode: Key | Key[]

The key code to send.

modifiers?: Key[]

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.