UNPKG

@byndyusoft-ui/use-throttled-value

Version:
6 lines (5 loc) 389 B
import { IThrottledCallbackOptions } from '@byndyusoft-ui/use-throttled-callback'; import { InitialState } from '@byndyusoft-ui/types'; import { TUseThrottledValueReturn } from './useThrottledValue.types'; declare const useThrottledValue: <T>(value: InitialState<T>, delay: number, option?: IThrottledCallbackOptions) => TUseThrottledValueReturn<T>; export default useThrottledValue;