export const SHORTCUT_MODIFIER = { MOD: 'mod', ALT: 'altKey', META: 'metaKey', CTRL: 'ctrlKey', SHIFT: 'shiftKey', } as const; export const SHORTCUT_KEYS = { a: 'a', b: 'b', c: 'c', d: 'd', e: 'e', f: 'f', g: 'g', h: 'h', i: 'i', j: 'j', k: 'k', l: 'l', m: 'm', n: 'n', o: 'o', p: 'p', q: 'q', r: 'r', s: 's', t: 't', u: 'u', v: 'v', w: 'w', x: 'x', y: 'y', z: 'z', '*': '*', '+': '+', '-': '-', '/': '/', ';': ';', ':': ':', ',': ',', '.': '.', '`': '`', '[': '[', '\\': '\\', ']': ']', "'": "'", ')': ')', '!': '!', '@': '@', '#': '#', $: '$', '%': '%', '^': '^', '&': '&', '(': '(', '<': '<', _: '_', '>': '>', '?': '?', '~': '~', '{': '{', '|': '|', '}': '}', '"': '"', '1': '1', '2': '2', '3': '3', '4': '4', '5': '5', '6': '6', '7': '7', '8': '8', '9': '9', '0': '0', Enter: 'Enter', ArrowUp: 'ArrowUp', ArrowLeft: 'ArrowLeft', ArrowDown: 'ArrowDown', Backspace: 'Backspace', ArrowRight: 'ArrowRight', } as const; export const SHORTCUT_KEY_DISPLAY_MAP: Record = { mod: 'Ctrl', ArrowUp: '⇧', altKey: 'Alt', ArrowDown: '⇩', ArrowLeft: '⇦', ctrlKey: 'Ctrl', metaKey: 'Meta', ArrowRight: '⇨', shiftKey: 'Shift', };