constants.d.ts 468 B

123456789101112131415161718
  1. /**
  2. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. export declare const KEYS: {
  8. ARROW_DOWN: string;
  9. ARROW_LEFT: string;
  10. ARROW_RIGHT: string;
  11. ARROW_UP: string;
  12. BACKSPACE: string;
  13. CONTROL_C: string;
  14. CONTROL_D: string;
  15. CONTROL_U: string;
  16. ENTER: string;
  17. ESCAPE: string;
  18. };