UNPKG

@hyper-fetch/react

Version:

React hooks and utils for the hyper-fetch

10 lines (9 loc) 223 B
export const getBounceData = (bounceData: { reset: () => void; active: boolean; }): { reset: () => void; active: boolean } => { return { ...bounceData, ...{ throttle: undefined, debounce: undefined }, }; };