UNPKG

@xyo-network/react-shared

Version:

Common React library for all XYO projects that use React

9 lines (6 loc) 253 B
import type { Dispatch, SetStateAction } from 'react' import type { ContextExState } from '../contextEx/index.ts' export interface ResolvedDivinerState<T> extends ContextExState { diviner?: T setDiviner?: Dispatch<SetStateAction<T | undefined>> }