UNPKG

159 BTypeScriptView Raw
1import type { DebounceOptions } from './debounceOptions';
2declare function useDebounce<T>(value: T, options?: DebounceOptions): T;
3export default useDebounce;