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

19 lines
463 B
TypeScript

import type { GridStateColDef } from '../colDef/gridColDef';
/**
* Object passed as parameter of the column visibility change event.
*/
export interface GridColumnVisibilityChangeParams {
/**
* The field of the column which visibility changed.
*/
field: string;
/**
* The column of the current header component.
*/
colDef: GridStateColDef;
/**
* The visibility state of the column.
*/
isVisible: boolean;
}