UNPKG

@studiometa/js-toolkit

Version:

A set of useful little bits of JavaScript to boost your project! 🚀

14 lines (13 loc) • 289 B
/** * @link https://js-toolkit.studiometa.dev/utils/keyCodes.html */ export declare const keyCodes: { readonly ENTER: 13; readonly SPACE: 32; readonly TAB: 9; readonly ESC: 27; readonly LEFT: 37; readonly UP: 38; readonly RIGHT: 39; readonly DOWN: 40; };