react-use/lib/useKeyPress.d.ts
2019-01-02 15:20:55 +00:00

6 lines
155 B
TypeScript

interface Options {
useKeyboardJS: boolean;
}
declare const useKeyPress: (targetKey: string, config?: Options) => boolean;
export default useKeyPress;