react-use/lib/useKeyPress.d.ts
2019-01-24 16:34:50 +00:00

6 lines
155 B
TypeScript

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