UNPKG

@xyo-network/react-shared

Version:

Common React library for all XYO projects that use React

8 lines 307 B
import type { ContextExState } from '@xylabs/react-shared'; import type { Dispatch } from 'react'; import type { ListMode } from '../../models/index.ts'; export type ListModeContextState = ContextExState<{ listMode: ListMode; setListMode?: Dispatch<ListMode>; }>; //# sourceMappingURL=State.d.ts.map