Skip to content
Prev Previous commit
Next Next commit
Remove type widening
  • Loading branch information
sirreal committed Dec 29, 2020
commit 9a3a09f2ac5147cc7aacfe4f10e71ac3904736c0
8 changes: 0 additions & 8 deletions packages/keycodes/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,29 +106,21 @@ export const F10 = 121;

/**
* Keycode for ALT key.
*
* @type {WPModifierPart}
*/
export const ALT = 'alt';

/**
* Keycode for CTRL key.
*
* @type {WPModifierPart}
*/
export const CTRL = 'ctrl';

/**
* Keycode for COMMAND/META key.
*
* @type {WPModifierPart}
*/
export const COMMAND = 'meta';

/**
* Keycode for SHIFT key.
*
* @type {WPModifierPart}
*/
export const SHIFT = 'shift';

Expand Down