@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
10 lines (9 loc) • 329 B
TypeScript
import * as React from 'react';
import { GridColDef } from '../../../models/colDef/gridColDef';
export interface GridColumnMenuProps extends React.HTMLAttributes<HTMLUListElement> {
hideMenu: (event: React.SyntheticEvent) => void;
currentColumn: GridColDef;
open: boolean;
id?: string;
labelledby?: string;
}