UNPKG

ionic-angular

Version:

A powerful framework for building mobile and progressive web apps with JavaScript and Angular 2

18 lines 369 B
export var Key = {}; Key.LEFT = 37; Key.UP = 38; Key.RIGHT = 39; Key.DOWN = 40; Key.ENTER = 13; Key.ESCAPE = 27; Key.SPACE = 32; Key.TAB = 9; Key[Key.LEFT] = "LEFT"; Key[Key.UP] = "UP"; Key[Key.RIGHT] = "RIGHT"; Key[Key.DOWN] = "DOWN"; Key[Key.ENTER] = "ENTER"; Key[Key.ESCAPE] = "ESCAPE"; Key[Key.SPACE] = "SPACE"; Key[Key.TAB] = "TAB"; //# sourceMappingURL=key.js.map