Skip to content

Instantly share code, notes, and snippets.

@raduGaspar
Created October 24, 2016 17:14
Show Gist options
  • Save raduGaspar/f33dc21045311f92d92e189e87d2026c to your computer and use it in GitHub Desktop.
Save raduGaspar/f33dc21045311f92d92e189e87d2026c to your computer and use it in GitHub Desktop.
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