UNPKG

react-transition-preset

Version:

Lightweight, zero-dependency transition component for React with common preset transition

12 lines (9 loc) 286 B
import { EffectCallback, DependencyList } from 'react'; /** * Executes a function when dependencies changed after hook mouted */ declare function useDidUpdate(fn: EffectCallback, options: { initialMounted?: boolean; deps?: DependencyList; }): void; export { useDidUpdate };