@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
10 lines • 352 B
TypeScript
import type { HeightEntry } from '@mui/x-virtualizer/models';
import { GridRowId } from "../../../models/gridRows.js";
export type { HeightEntry } from '@mui/x-virtualizer/models';
export type HeightCache = Map<GridRowId, HeightEntry>;
export interface GridRowsMetaInternalCache {
/**
* Map of height cache entries.
*/
heights: HeightCache;
}