mirror of
https://github.com/streamich/react-use.git
synced 2026-01-18 14:06:52 +00:00
6 lines
155 B
TypeScript
6 lines
155 B
TypeScript
interface Options {
|
|
useKeyboardJS: boolean;
|
|
}
|
|
declare const useKeyPress: (targetKey: string, config?: Options) => boolean;
|
|
export default useKeyPress;
|