UNPKG

hooks-me

Version:

<div align="center"> <h1>hooks-me</h1> <div>React useful hooks.</div>

9 lines (8 loc) 292 B
/** * * @param callback Method to call * @param delay Delay in ms * @param dependencies If present, effect will only activate if the values in the list change. */ declare const useDebounce: (callback: () => void, delay: number, dependencies?: any[]) => void; export default useDebounce;