Interface KeyCodeCommand

A key code command.

interface KeyCodeCommand {
    keyCode: unknown;
    modifiers?: unknown[];
}

Hierarchy (view full)

Properties

Properties

keyCode: unknown

The key code or key codes to send.

modifiers?: unknown[]

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