-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAliases.ts
56 lines (56 loc) · 1006 Bytes
/
Aliases.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
export = new ReadonlyMap([
["0", "Zero"],
["1", "One"],
["2", "Two"],
["3", "Three"],
["4", "Four"],
["5", "Five"],
["6", "Six"],
["7", "Seven"],
["8", "Eight"],
["9", "Nine"],
["a", "A"],
["b", "B"],
["c", "C"],
["d", "D"],
["e", "E"],
["f", "F"],
["g", "G"],
["h", "H"],
["i", "I"],
["j", "J"],
["k", "K"],
["l", "L"],
["m", "M"],
["n", "N"],
["o", "O"],
["p", "P"],
["q", "Q"],
["r", "R"],
["s", "S"],
["t", "T"],
["u", "U"],
["v", "V"],
["w", "W"],
["x", "X"],
["y", "Y"],
["z", "Z"],
["Numpad0", "KeypadZero"],
["Numpad1", "KeypadOne"],
["Numpad2", "KeypadTwo"],
["Numpad3", "KeypadThree"],
["Numpad4", "KeypadFour"],
["Numpad5", "KeypadFive"],
["Numpad6", "KeypadSix"],
["Numpad7", "KeypadSeven"],
["Numpad8", "KeypadEight"],
["Numpad9", "KeypadNine"],
["L1", "ButtonL1"],
["R1", "ButtonR1"],
["L2", "ButtonL2"],
["R2", "ButtonR2"],
["L3", "ButtonL3"],
["R3", "ButtonR3"],
["LeftCtrl", "LeftControl"],
["RightCtrl", "RightControl"],
] as const);