-
Notifications
You must be signed in to change notification settings - Fork 619
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
export declare const enum KeyCodeMap { | ||
BACK_KEY = 46, | ||
DELETE_KEY = 8, | ||
ENTER_KEY = 13, | ||
A_KEY = 65, | ||
ESC_KEY = 27, | ||
UP_KEY = 38, | ||
DOWN_KEY = 40, | ||
PAGE_UP_KEY = 33, | ||
PAGE_DOWN_KEY = 34 | ||
} | ||
export declare const KeyCodeMap: { | ||
readonly BACK_KEY: 46; | ||
readonly DELETE_KEY: 8; | ||
readonly ENTER_KEY: 13; | ||
readonly A_KEY: 65; | ||
readonly ESC_KEY: 27; | ||
readonly UP_KEY: 38; | ||
readonly DOWN_KEY: 40; | ||
readonly PAGE_UP_KEY: 33; | ||
readonly PAGE_DOWN_KEY: 34; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
export const enum KeyCodeMap { | ||
BACK_KEY = 46, | ||
DELETE_KEY = 8, | ||
ENTER_KEY = 13, | ||
A_KEY = 65, | ||
ESC_KEY = 27, | ||
UP_KEY = 38, | ||
DOWN_KEY = 40, | ||
PAGE_UP_KEY = 33, | ||
PAGE_DOWN_KEY = 34, | ||
} | ||
export const KeyCodeMap = { | ||
BACK_KEY: 46, | ||
DELETE_KEY: 8, | ||
ENTER_KEY: 13, | ||
A_KEY: 65, | ||
ESC_KEY: 27, | ||
UP_KEY: 38, | ||
DOWN_KEY: 40, | ||
PAGE_UP_KEY: 33, | ||
PAGE_DOWN_KEY: 34, | ||
} as const; |