1 2 3 4 5 6 7 8
export type KeyCode = number; var key_codes: { [index: string]: KeyCode } = { SLASH: 220, M: 77 }; export default key_codes;