UNPKG

common-hook

Version:
8 lines (7 loc) 280 B
/** * @name 只在 requestAnimationFrame callback 时更新 state * @description 一般用于性能优化 * @example * const [state, setState] = useRafState({ width: 0,height: 0}) */ export declare const useRafState: <S>(initialState?: S | (() => S)) => readonly [any, any];