UNPKG

throttle-hooks

Version:

Convenient React useDebounce and useThrottle hooks for a clean code.

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