forgeplus-react/node_modules/ahooks/lib/useSize/useRafState.d.ts

4 lines
180 B
TypeScript

import type { Dispatch, SetStateAction } from 'react';
declare const useRafState: <S>(initialState: S | (() => S)) => [S, Dispatch<SetStateAction<S>>];
export default useRafState;