UNPKG

shortcutter

Version:

Tiny, dependency-free library to manage keyboard shortcuts in your application.

8 lines (7 loc) 197 B
export declare function useController(): { press(key: string): void; release(key: string): void; releaseAll(): void; getPressed(): string[]; isPressed(key: string): boolean; };