Files
ETB/ETB-FrontEnd/node_modules/@mui/x-data-grid/colDef/gridNumericOperators.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

9 lines
540 B
TypeScript

import { GridFilterOperator } from '../models/gridFilterOperator';
import { GridCellParams } from '../models';
export declare const getGridNumericQuickFilterFn: (value: any) => (({ value }: GridCellParams) => boolean) | null;
export declare const getGridNumericOperators: () => GridFilterOperator<any, number | string | null, any>[];
/**
* @deprecated Use `getGridNumericOperators` instead.
*/
export declare const getGridNumericColumnOperators: (() => GridFilterOperator<any, number | string | null, any>[]) | ((...args: any[]) => any);