import type { GridStateColDef } from '../colDef'; /** * 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; /** * API ref that let you manipulate the grid. */ api: any; /** * The visibility state of the column. */ isVisible: boolean; }