assertValidHotkey

Function: assertValidHotkey()

ts
function assertValidHotkey(hotkey): void;

Defined in: validate.ts:138

Validates a hotkey and throws an error if invalid. Useful for development-time validation.

Parameters

hotkey

The hotkey string to validate

Hotkey | string & object

Returns

void

Throws

Error if the hotkey is invalid

Example

ts
assertValidHotkey('Mod+S') // OK
assertValidHotkey('') // Throws Error: Invalid hotkey: Hotkey cannot be empty