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