export interface ColumnHide { /** * The Column which is hidden */ column: any; /** * The name of the field in the grid's definition from which to draw the column's value. */ fieldName: string; /** * Title of the column */ title: string; } export default ColumnHide;