/** * Copyright (c) Cisco Systems, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ export enum Key { ArrowDown = "ArrowDown", ArrowLeft = "ArrowLeft", ArrowRight = "ArrowRight", ArrowUp = "ArrowUp", Backspace = "Backspace", Delete = "Delete", End = "End", Enter = "Enter", Escape = "Escape", Home = "Home", Space = "Space", Tab = "Tab", Digit1 = "Digit1", Digit2 = "Digit2", Digit3 = "Digit3", Digit4 = "Digit4", Digit5 = "Digit5", Digit6 = "Digit6", Digit7 = "Digit7", Digit8 = "Digit8", Digit9 = "Digit9", } export enum TIME_UNIT { HOUR = "hour", MINUTE = "minute", SECOND = "second", AM_PM = "am_pm", } export enum ARIA_INVALID { GRAMMAR = "grammar", FALSE = "false", SPELLING = "spelling", TRUE = "true", } export const MILLISECONDS_PER_SECOND = 1000;