Files
Checkmate/node_modules/@mui/base/useList/ListContext.d.ts
2024-05-05 11:21:00 +03:30

9 lines
368 B
TypeScript

import * as React from 'react';
import { ListAction } from './listActions.types';
import { ListItemState } from './useList.types';
export interface ListContextValue<ItemValue> {
dispatch: (action: ListAction<ItemValue>) => void;
getItemState: (item: ItemValue) => ListItemState;
}
export declare const ListContext: React.Context<ListContextValue<any> | null>;