function formatHotkey(parsed): string;
Defined in: format.ts:23
Converts a ParsedHotkey back to a hotkey string.
The parsed hotkey object
string
A hotkey string in canonical form
formatHotkey({ key: 'S', ctrl: true, shift: true, alt: false, meta: false, modifiers: ['Control', 'Shift'] })
// Returns: 'Control+Shift+S'