UNPKG

@xyo-network/react-shared

Version:

Common React library for all XYO projects that use React

8 lines (6 loc) 241 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>> }>