UNPKG

throttle-hooks

Version:

Convenient React useDebounce and useThrottle hooks for a clean code.

3 lines (2 loc) 191 B
import type { AnyFunction } from './types'; export default function useDebounce(wait?: number, leading?: boolean): (newFunction: AnyFunction, scope?: AnyFunction, args?: Array<any>) => void;