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

27 lines
702 B
TypeScript

/**
* The mode of the cell.
*/
export declare type GridCellMode = 'edit' | 'view';
/**
* The mode of the row.
*/
export declare type GridRowMode = 'edit' | 'view';
/**
* The cell value type.
* @deprecated Use `any` or the V generic passed to most interfaces.
*/
export declare type GridCellValue = string | number | boolean | Date | null | undefined | object;
/**
* The coordinates of cell represented by their row and column indexes.
*/
export interface GridCellIndexCoordinates {
colIndex: number;
rowIndex: number;
}
/**
* The coordinates of column header represented by their row and column indexes.
*/
export interface GridColumnHeaderIndexCoordinates {
colIndex: number;
}