ALL_KEYS

Variable: ALL_KEYS

ts
const ALL_KEYS: Set<
  | LetterKey
  | NumberKey
  | FunctionKey
  | NavigationKey
  | EditingKey
| PunctuationKey>;

Defined in: constants.ts:315

Set of all valid non-modifier keys.

This is the union of all key type sets (letters, numbers, function keys, navigation, editing, and punctuation). Used primarily for validation to check if a key string is recognized and will have type-safe autocomplete support.

See