UNPKG

common-hook

Version:
9 lines (8 loc) 308 B
/** * @name 处理节流值Hook * @description * 规定在时间内,只能触发一次函数。如果这个时间内触发多次函数,只有一次生效 * @example * const throttledValue = useThrottle(value, { wait: 500 }) */ export declare const useThrottle: <T>(value: T, options?: any) => any;