@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
11 lines (10 loc) • 408 B
TypeScript
import * as React from 'react';
import { GridRowAriaAttributesInternalHook } from './gridRowConfiguration';
export interface GridAriaAttributesInternalHook {
useGridAriaAttributes: () => React.HTMLAttributes<HTMLElement>;
}
export interface GridInternalHook extends GridAriaAttributesInternalHook, GridRowAriaAttributesInternalHook {
}
export interface GridConfiguration {
hooks: GridInternalHook;
}