Interface WindowsKeystrokeCommand

A MacOS keystroke command.

interface WindowsKeystrokeCommand {
    characters: string;
    description?: string;
    modifiers?: Key[];
    representation?: string;
}

Hierarchy (view full)

Properties

characters: string

The character(s) to send.

description?: string

Description of the action the keypress performs.

modifiers?: Key[]

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

representation?: string

Symbolic representation of the characters and modifier keys this command uses.