@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
16 lines (15 loc) • 593 B
TypeScript
import * as React from 'react';
import { GridRowAriaAttributesInternalHook } from './gridRowConfiguration';
import type { GridRowId } from '../gridRows';
export interface GridAriaAttributesInternalHook {
useGridAriaAttributes: () => React.HTMLAttributes<HTMLElement>;
}
export interface GridInternalHook extends GridAriaAttributesInternalHook, GridRowAriaAttributesInternalHook {
useCellAggregationResult: (id: GridRowId, field: string) => {
position: 'footer' | 'inline';
value: any;
} | null;
}
export interface GridConfiguration {
hooks: GridInternalHook;
}