UNPKG

@td-design/rn-hooks

Version:

从ahooks里面抽取的一些在rn项目里可以使用的hooks。提高开发效率

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;