KeyboardIO.press

Undocumented in source.
interface KeyboardIO
alias press = click

Examples

assert(KeyboardIO.hold.comma == KeyboardIO.createEvent(KeyboardIO.Key.comma, false));
assert(KeyboardIO.press.comma == KeyboardIO.createEvent(KeyboardIO.Key.comma, true));

assert(KeyboardIO.hold.slash == KeyboardIO.createEvent(KeyboardIO.Key.slash, false));
assert(KeyboardIO.press.slash == KeyboardIO.createEvent(KeyboardIO.Key.slash, true));

Meta