rooks
Version:
Essential React custom hooks ⚓ to super charge your components!
10 lines • 371 B
TypeScript
/**
* usePreviousImmediate hook for React
*
* @param currentValue The value whose previous value is to be tracked
* @returns The previous value
* @see https://react-hooks.org/docs/usePreviousImmediate
*/
declare function usePreviousImmediate<T>(currentValue: T): T | null;
export { usePreviousImmediate };
//# sourceMappingURL=usePreviousImmediate.d.ts.map