UNPKG

reactuals

Version:

A useful package providing a collection of 50+ React hooks and utilities to simplify React development.

7 lines (6 loc) 239 B
/** * Returns a debounced version of the input value after a delay. * @param value - The value to debounce * @param delay - Delay in milliseconds (default: 300ms) */ export declare function useDebounce<T>(value: T, delay?: number): T;