function formatHotkeySequence(sequence): string;
Defined in: format.ts:23
Converts a hotkey sequence array to a display string.
Hotkey[]
Array of hotkey strings that form the sequence
string
A space-separated string (e.g. ['G','G'] → 'G G')
formatHotkeySequence(['G', 'G']) // 'G G'
formatHotkeySequence(['D', 'I', 'W']) // 'D I W'