UNPKG

@matthew.ngo/react-filter-pilot

Version:

Powerful filtering, pagination, and sorting for React with TanStack Query integration

9 lines (7 loc) 189 B
/** * Debounce function with cancel method */ declare function debounce<T extends (...args: any[]) => any>(func: T, delay: number): T & { cancel: () => void; }; export { debounce };