@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
16 lines • 400 B
TypeScript
import { GridRowId } from "../../../models/gridRows.js";
export type HeightEntry = {
content: number;
spacingTop: number;
spacingBottom: number;
detail: number;
autoHeight: boolean;
needsFirstMeasurement: boolean;
};
export type HeightCache = Map<GridRowId, HeightEntry>;
export interface GridRowsMetaInternalCache {
/**
* Map of height cache entries.
*/
heights: HeightCache;
}