UNPKG

559 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.ARROW_RIGHT = exports.ARROW_LEFT = exports.ARROW_DOWN = exports.ARROW_UP = void 0;
7
8/*
9Copyright (c) 2018-2020 Uber Technologies, Inc.
10
11This source code is licensed under the MIT license found in the
12LICENSE file in the root directory of this source tree.
13*/
14var ARROW_UP = 38;
15exports.ARROW_UP = ARROW_UP;
16var ARROW_DOWN = 40;
17exports.ARROW_DOWN = ARROW_DOWN;
18var ARROW_LEFT = 37;
19exports.ARROW_LEFT = ARROW_LEFT;
20var ARROW_RIGHT = 39;
21exports.ARROW_RIGHT = ARROW_RIGHT;
\No newline at end of file