UNPKG

ahooks

Version:
5 lines (4 loc) 226 B
import type { Dispatch, SetStateAction } from 'react'; type ResetState = () => void; declare const useResetState: <S>(initialState: S | (() => S)) => [S, Dispatch<SetStateAction<S>>, ResetState]; export default useResetState;