@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
17 lines (16 loc) • 418 B
TypeScript
import { GridRowId } from '../../../models/gridRows';
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;
}