UNPKG

useful-custom-react-hooks

Version:

A collection of useful custom React hooks to simplify common tasks and enhance your React applications.

3 lines (2 loc) 116 B
declare const useDebounceState: <T>(value: T, ms?: number) => [T, (value: T) => void]; export { useDebounceState };