function hasNonModifierKey(hotkey, platform): boolean;
Defined in: parse.ts:314
Checks if a hotkey or ParsedHotkey contains at least one non-modifier key.
This is useful for validating that a recorded hotkey is complete and not just a combination of modifiers without an action key.
The hotkey string or ParsedHotkey to check
Hotkey | ParsedHotkey | string & object
The target platform for parsing (defaults to auto-detection)
"mac" | "windows" | "linux"
boolean
True if the hotkey contains at least one non-modifier key
hasNonModifierKey('Control+Shift+S') // true
hasNonModifierKey('Control+Shift') // false (no action key)
hasNonModifierKey(parseHotkey('Mod+A')) // true