export interface ColumnResize { /** * The name of the field in the grid's definition from which to draw the column's value. */ fieldName: string; /** * Width of the column */ width: number; /** * Title of the column */ title: string; } export default ColumnResize;