@progress/kendo-react-grid
Version:
KendoReact Grid package
14 lines (13 loc) • 346 B
TypeScript
/**
* The column props passed by the ColumnMenu.
*/
export interface GridColumnMenuColumnProps {
/**
* The field to which the column is bound.
*/
field?: string;
/**
* Defines the filter type that is displayed inside the filter row. Defaults to `text`.
*/
filter?: 'text' | 'numeric' | 'boolean' | 'date';
}