UNPKG

226 BTypeScriptView Raw
1import type { Dispatch, SetStateAction } from 'react';
2type ResetState = () => void;
3declare const useResetState: <S>(initialState: S | (() => S)) => [S, Dispatch<SetStateAction<S>>, ResetState];
4export default useResetState;