@mui/x-data-grid-pro
Version:
The Pro plan edition of the Data Grid components (MUI X).
8 lines (7 loc) • 389 B
TypeScript
import { GridRowId, GridRowTreeConfig } from '@mui/x-data-grid';
export declare function skipFiltering(rowTree: GridRowTreeConfig): {
filteredRowsLookup: Record<GridRowId, boolean>;
filteredChildrenCountLookup: Record<GridRowId, number>;
filteredDescendantCountLookup: Record<GridRowId, number>;
};
export declare function skipSorting(rowTree: GridRowTreeConfig): GridRowId[];