type KeyboardState = {
modifiers: {
ctrl: boolean,
alt: boolean,
shift: boolean,
meta: boolean,
},
keys: Record<string, boolean>,
key: string | null,
char: string | null,
soft: boolean,
}
packages / workbench / src / providers / event-provider.ts