mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
// Type definitions for keysym 0.0
|
|
// Project: https://github.com/substack/node-keysym
|
|
// Definitions by: Harry Shipton <https://github.com/harryshipton>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export interface Record {
|
|
keysym: number;
|
|
names: string[];
|
|
status: string;
|
|
unicode: number;
|
|
}
|
|
|
|
/** Contains all associated keysyms, unicode characters, names, and their status */
|
|
export const records: Record[];
|
|
|
|
/**
|
|
* Converts a keysym into an associated record describing all representations of the key
|
|
* @param keysym - Keysym of the key
|
|
* @returns - Associated record or undefined if one couldn't be found
|
|
*/
|
|
export function fromKeysym(keysym: number): Record | undefined;
|
|
|
|
/**
|
|
* Converts a key name into an associated record describing all representations of the key
|
|
* @param name - Name of the key
|
|
* @returns - Associated record or undefined if one couldn't be found
|
|
*/
|
|
export function fromName(name: string): Record | undefined;
|
|
|
|
/**
|
|
* Converts a unicode character or value into an array of all matching records describing all possible representations of the key
|
|
* @param code - Unicode character or value
|
|
* @returns - Associated records, will be empty if no matches were found
|
|
* @throws Will throw an error if string is not one character
|
|
*/
|
|
export function fromUnicode(code: string | number): Record[];
|