@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
11 lines • 507 B
TypeScript
import type { GridRowModelUpdate } from '@mui/x-data-grid';
import type { GridColDef } from '../../../models/colDef';
export interface GridPivotingStatePartial {
active: boolean;
panelOpen: boolean;
initialColumns: Map<string, GridColDef> | undefined;
}
export interface GridPivotingPrivateApiCommunity {
updateNonPivotRows: (rows: readonly GridRowModelUpdate[], keepPreviousRows?: boolean) => void;
updateNonPivotColumns: (columns: readonly GridColDef[], keepPreviousColumns?: boolean) => void;
}