UNPKG

react-usehooks-ts

Version:

A collections of typescript supported react Custom hooks

7 lines (6 loc) 186 B
interface UseDebounceOptions { delay?: number; minLength?: number; } export declare const useDebounce: (value: string, options?: UseDebounceOptions) => string | null; export {};