UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

40 lines 769 B
/** * Corresponds to {@link KeyboardEvent.key } */ export type KeyValue = string; /** * Corresponds to {@link KeyboardEvent.key} * @readonly * @enum {string} */ export const KeyValue: { Backspace: string; ArrowLeft: string; ArrowUp: string; ArrowDown: string; ArrowRight: string; Escape: string; Enter: string; Shift: string; Control: string; Alt: string; Space: string; CapsLock: string; Tab: string; Delete: string; /** * Meta represents Windows/Command key */ Meta: string; "0": string; "1": string; "2": string; "3": string; "4": string; "5": string; "6": string; "7": string; "8": string; "9": string; }; //# sourceMappingURL=KeyValues.d.ts.map