Created
October 24, 2016 17:14
-
-
Save raduGaspar/f33dc21045311f92d92e189e87d2026c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default class KeyboardEvents { | |
static get KEY_UP() { | |
return 'keyup'; // actual event name, don't change | |
} | |
static get KEY_DOWN() { | |
return 'keydown'; // actual event name, don't change | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment