@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
16 lines (15 loc) • 499 B
TypeScript
/**
* The API to disable the virtualization that is available in the grid [[apiRef]].
*/
export interface GridDisableVirtualizationApi {
/**
* Disables grid's virtualization.
* @ignore - do not document. Remove before releasing v5 stable version.
*/
unstable_disableVirtualization: () => void;
/**
* Enables grid's virtualization.
* @ignore - do not document. Remove before releasing v5 stable version.
*/
unstable_enableVirtualization: () => void;
}