UNPKG

@xyo-network/react-shared

Version:

Common React library for all XYO projects that use React

7 lines 284 B
import type { ContextExState } from '@xylabs/react-shared'; import type { Dispatch, SetStateAction } from 'react'; export type ResolvedDivinerState<T> = ContextExState<{ diviner?: T; setDiviner?: Dispatch<SetStateAction<T | undefined>>; }>; //# sourceMappingURL=State.d.ts.map