@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
6 lines (5 loc) • 459 B
TypeScript
import { GridFilterOperator } from '../models/gridFilterOperator';
import { GridCellParams, GridColDef } from '../models';
import { GridApiCommunity } from '../models/api/gridApiCommunity';
export declare const getGridSingleSelectQuickFilterFn: (value: any, column: GridColDef, apiRef: React.MutableRefObject<GridApiCommunity>) => (({ value }: GridCellParams) => boolean) | null;
export declare const getGridSingleSelectOperators: () => GridFilterOperator[];