Interface KeystrokeCommand

A keystroke command.

interface KeystrokeCommand {
    characters: string;
    modifiers?: unknown[];
}

Hierarchy (view full)

Properties

characters: string

The character(s) to send.

modifiers?: unknown[]

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