UNPKG

@hhgtech/hhg-components

Version:
4 lines (3 loc) 282 B
/** src: https://www.benmvp.com/blog/8-helpful-custom-react-hooks/ * delay State update till next animation frame. Similar to debounce but shorter */ export declare const useRafState: <S>(initialState: S | (() => S)) => readonly [S, (value: S | ((prevState: S) => S)) => void];