UNPKG

react-elegant-ui

Version:

Elegant UI components, made by BEM best practices for react

7 lines (6 loc) 196 B
/** * Return init value or previous value * * By default, in first time will return same value */ export declare const usePrevious: <V, I = null>(value: V, init?: V | I | undefined) => V | I;