@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
12 lines • 583 B
text/typescript
import type { GridRowsInternalCache } from "../hooks/features/rows/gridRowsInterfaces.mjs";
import type { GridRowsMetaInternalCache } from "../hooks/features/rows/gridRowsMetaInterfaces.mjs";
import type { GridColumnGroupingInternalCache } from "../hooks/features/columnGrouping/gridColumnGroupsInterfaces.mjs";
import type { GridColDef } from "./colDef/index.mjs";
export interface GridApiCaches {
columns: {
lastColumnsProp: readonly GridColDef[];
};
columnGrouping: GridColumnGroupingInternalCache;
rows: GridRowsInternalCache;
rowsMeta: GridRowsMetaInternalCache;
}