@mantine/hooks
Version:
A collection of 50+ hooks for state and UI management
15 lines (14 loc) • 548 B
TypeScript
export interface UseDebouncedCallbackOptions {
delay: number;
flushOnUnmount?: boolean;
leading?: boolean;
}
export type UseDebouncedCallbackReturnValue<T extends (...args: any[]) => any> = ((...args: Parameters<T>) => void) & {
flush: () => void;
cancel: () => void;
};
export declare function useDebouncedCallback<T extends (...args: any[]) => any>(callback: T, options: number | UseDebouncedCallbackOptions): ((...args: Parameters<T>) => void) & {
flush: () => void;
cancel: () => void;
_isFirstCall: boolean;
};