function checkHotkey(hotkey): boolean;
Defined in: validate.ts:159
Validates a hotkey and logs warnings to the console. Useful for development-time feedback.
The hotkey string to validate
Hotkey | string & object
boolean
True if the hotkey is valid (may still have warnings)
checkHotkey('Alt+C')
// Console: Warning: Alt+C may not work reliably on macOS...
// Returns: true