UNPKG

@legendapp/tools

Version:
3 lines (2 loc) 209 B
import { Dispatch, MutableRefObject, SetStateAction } from 'react'; export declare function useStateWithRef<T>(initialValue?: T | (() => T)): [T | undefined, Dispatch<SetStateAction<T>>, MutableRefObject<T>];