UNPKG

@td-design/rn-hooks

Version:

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

5 lines (4 loc) 282 B
import { Dispatch, SetStateAction } from 'react'; declare function useSafeState<S>(initialState: S | (() => S)): [S, Dispatch<SetStateAction<S>>]; declare function useSafeState<S = undefined>(): [S | undefined, Dispatch<SetStateAction<S | undefined>>]; export default useSafeState;