Commit 966f06ca16f20c48fb7f614edb93a13becb8af54
Committed by
GitHub
Merge pull request #3050 from Xotic750/constants_event_keys
Keyboard event key constants
Showing
1 changed file
with
9 additions
and
0 deletions
Show diff stats
| 1 | +export const ALT = 'Alt'; | |
| 2 | +export const ARROWLEFT = 'ArrowLeft'; | |
| 3 | +export const ARROWRIGHT = 'ArrowRight'; | |
| 4 | +export const CAPSLOCK = 'CapsLock'; | |
| 5 | +export const CONTROL = 'Control'; | |
| 6 | +export const ENTER = 'Enter'; | |
| 7 | +export const META = 'Meta'; | |
| 8 | +export const SHIFT = 'Shift'; | |
| 9 | +export const TAB = 'Tab'; | ... | ... |