keycodes.d.ts 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /**
  2. * @license
  3. * Copyright Google LLC All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.io/license
  7. */
  8. export declare const MAC_ENTER = 3;
  9. export declare const BACKSPACE = 8;
  10. export declare const TAB = 9;
  11. export declare const NUM_CENTER = 12;
  12. export declare const ENTER = 13;
  13. export declare const SHIFT = 16;
  14. export declare const CONTROL = 17;
  15. export declare const ALT = 18;
  16. export declare const PAUSE = 19;
  17. export declare const CAPS_LOCK = 20;
  18. export declare const ESCAPE = 27;
  19. export declare const SPACE = 32;
  20. export declare const PAGE_UP = 33;
  21. export declare const PAGE_DOWN = 34;
  22. export declare const END = 35;
  23. export declare const HOME = 36;
  24. export declare const LEFT_ARROW = 37;
  25. export declare const UP_ARROW = 38;
  26. export declare const RIGHT_ARROW = 39;
  27. export declare const DOWN_ARROW = 40;
  28. export declare const PLUS_SIGN = 43;
  29. export declare const PRINT_SCREEN = 44;
  30. export declare const INSERT = 45;
  31. export declare const DELETE = 46;
  32. export declare const ZERO = 48;
  33. export declare const ONE = 49;
  34. export declare const TWO = 50;
  35. export declare const THREE = 51;
  36. export declare const FOUR = 52;
  37. export declare const FIVE = 53;
  38. export declare const SIX = 54;
  39. export declare const SEVEN = 55;
  40. export declare const EIGHT = 56;
  41. export declare const NINE = 57;
  42. export declare const FF_SEMICOLON = 59;
  43. export declare const FF_EQUALS = 61;
  44. export declare const QUESTION_MARK = 63;
  45. export declare const AT_SIGN = 64;
  46. export declare const A = 65;
  47. export declare const B = 66;
  48. export declare const C = 67;
  49. export declare const D = 68;
  50. export declare const E = 69;
  51. export declare const F = 70;
  52. export declare const G = 71;
  53. export declare const H = 72;
  54. export declare const I = 73;
  55. export declare const J = 74;
  56. export declare const K = 75;
  57. export declare const L = 76;
  58. export declare const M = 77;
  59. export declare const N = 78;
  60. export declare const O = 79;
  61. export declare const P = 80;
  62. export declare const Q = 81;
  63. export declare const R = 82;
  64. export declare const S = 83;
  65. export declare const T = 84;
  66. export declare const U = 85;
  67. export declare const V = 86;
  68. export declare const W = 87;
  69. export declare const X = 88;
  70. export declare const Y = 89;
  71. export declare const Z = 90;
  72. export declare const META = 91;
  73. export declare const MAC_WK_CMD_LEFT = 91;
  74. export declare const MAC_WK_CMD_RIGHT = 93;
  75. export declare const CONTEXT_MENU = 93;
  76. export declare const NUMPAD_ZERO = 96;
  77. export declare const NUMPAD_ONE = 97;
  78. export declare const NUMPAD_TWO = 98;
  79. export declare const NUMPAD_THREE = 99;
  80. export declare const NUMPAD_FOUR = 100;
  81. export declare const NUMPAD_FIVE = 101;
  82. export declare const NUMPAD_SIX = 102;
  83. export declare const NUMPAD_SEVEN = 103;
  84. export declare const NUMPAD_EIGHT = 104;
  85. export declare const NUMPAD_NINE = 105;
  86. export declare const NUMPAD_MULTIPLY = 106;
  87. export declare const NUMPAD_PLUS = 107;
  88. export declare const NUMPAD_MINUS = 109;
  89. export declare const NUMPAD_PERIOD = 110;
  90. export declare const NUMPAD_DIVIDE = 111;
  91. export declare const F1 = 112;
  92. export declare const F2 = 113;
  93. export declare const F3 = 114;
  94. export declare const F4 = 115;
  95. export declare const F5 = 116;
  96. export declare const F6 = 117;
  97. export declare const F7 = 118;
  98. export declare const F8 = 119;
  99. export declare const F9 = 120;
  100. export declare const F10 = 121;
  101. export declare const F11 = 122;
  102. export declare const F12 = 123;
  103. export declare const NUM_LOCK = 144;
  104. export declare const SCROLL_LOCK = 145;
  105. export declare const FIRST_MEDIA = 166;
  106. export declare const FF_MINUS = 173;
  107. export declare const MUTE = 173;
  108. export declare const VOLUME_DOWN = 174;
  109. export declare const VOLUME_UP = 175;
  110. export declare const FF_MUTE = 181;
  111. export declare const FF_VOLUME_DOWN = 182;
  112. export declare const LAST_MEDIA = 183;
  113. export declare const FF_VOLUME_UP = 183;
  114. export declare const SEMICOLON = 186;
  115. export declare const EQUALS = 187;
  116. export declare const COMMA = 188;
  117. export declare const DASH = 189;
  118. export declare const SLASH = 191;
  119. export declare const APOSTROPHE = 192;
  120. export declare const TILDE = 192;
  121. export declare const OPEN_SQUARE_BRACKET = 219;
  122. export declare const BACKSLASH = 220;
  123. export declare const CLOSE_SQUARE_BRACKET = 221;
  124. export declare const SINGLE_QUOTE = 222;
  125. export declare const MAC_META = 224;