Files
ETB/ETB-FrontEnd/node_modules/@mui/x-data-grid/components/cell/GridActionsCell.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

15 lines
620 B
TypeScript

/// <reference types="react" />
import { GridRenderCellParams } from '../../models/params/gridCellParams';
import { GridMenuProps } from '../menu/GridMenu';
interface GridActionsCellProps extends Omit<GridRenderCellParams, 'value' | 'formattedValue'> {
value?: GridRenderCellParams['value'];
formattedValue?: GridRenderCellParams['formattedValue'];
position?: GridMenuProps['position'];
}
declare const GridActionsCell: {
(props: GridActionsCellProps): JSX.Element;
propTypes: any;
};
export { GridActionsCell };
export declare const renderActionsCell: (params: GridRenderCellParams) => JSX.Element;