UNPKG

@xyo-network/react-shared

Version:

Common React library for all XYO projects that use React

10 lines (7 loc) 275 B
import type { Dispatch } from 'react' import type { ListMode } from '../../models/index.ts' import type { ContextExState } from '../contextEx/index.ts' export interface ListModeContextState extends ContextExState { listMode: ListMode setListMode?: Dispatch<ListMode> }