UNPKG

zarm

Version:

基于 React 的移动端UI库

8 lines (7 loc) 298 B
import * as React from 'react'; declare function useSafeState<S>(initialState: S | (() => S)): [S, React.Dispatch<React.SetStateAction<S>>]; declare function useSafeState<S = undefined>(): [ S | undefined, React.Dispatch<React.SetStateAction<S | undefined>> ]; export default useSafeState;