import { type Protocol } from "https://deno.land/x/sinco@v4.1.0/deps.ts";
const { DispatchKeyEventRequest } = Protocol.Input;
Properties
Type of the key event. (DispatchKeyEventRequestType enum)
Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8 (default: 0).
Time at which the event occurred.
Text as generated by processing a virtual key code with a keyboard layout. Not needed for
for keyUp
and rawKeyDown
events (default: "")
Text that would have been generated by the keyboard if no modifiers were pressed (except for shift). Useful for shortcut (accelerator) key handling (default: "").
Unique DOM defined string value for each physical key (e.g., 'KeyA') (default: "").
Unique DOM defined string value describing the meaning of the key in the context of active modifiers, keyboard layout, etc (e.g., 'AltGr') (default: "").
Windows virtual key code (default: 0).
Native virtual key code (default: 0).
Whether the event was from the left or right side of the keyboard. 1=Left, 2=Right (default: 0).
Editing commands to send with the key event (e.g., 'selectAll') (default: []).
These are related to but not equal the command names used in document.execCommand
and NSStandardKeyBindingResponding.
See https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/editing/commands/editor_command_names.h for valid command names.