UNPKG

@byndyusoft-ui/use-throttled-callback

Version:
7 lines (6 loc) 317 B
export interface IThrottledCallbackOptions { leading?: boolean; trailing?: boolean; } declare function useThrottledCallback<A extends unknown[]>(callback: (...args: A) => void, delay: number, { leading, trailing }?: IThrottledCallbackOptions): (...args: A) => void; export default useThrottledCallback;