8 lines
260 B
TypeScript
8 lines
260 B
TypeScript
/**
|
|
* Mapping from numeric key code to key name. If the value is an array, the first element is the
|
|
* primary key name, and the second element is the key name when shift is pressed.
|
|
*/
|
|
export declare const codes: {
|
|
[code: string]: string | string[];
|
|
};
|