UNPKG

@mui/x-data-grid-pro

Version:

The Pro plan edition of the Data Grid components (MUI X).

13 lines (12 loc) 563 B
import * as React from 'react'; import { GridRenderCellParams, GridDataSourceGroupNode } from '@mui/x-data-grid'; interface GridTreeDataGroupingCellProps extends GridRenderCellParams<any, any, any, GridDataSourceGroupNode> { hideDescendantCount?: boolean; /** * The cell offset multiplier used for calculating cell offset (`rowNode.depth * offsetMultiplier` px). * @default 2 */ offsetMultiplier?: number; } export declare function GridDataSourceTreeDataGroupingCell(props: GridTreeDataGroupingCellProps): React.JSX.Element; export {};