igniteui-react-grids
Version:
Ignite UI React grid components.
13 lines (12 loc) • 331 B
TypeScript
/**
* Interface describing filtering operations
* @export
*/
export interface IgrFilteringOperation {
name?: string;
isUnary?: boolean | string;
isNestedQuery?: boolean | string;
iconName?: string;
hidden?: boolean | string;
logic?: (value: any, searchVal: any, ignoreCase: boolean) => any;
}