igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
19 lines (18 loc) • 491 B
TypeScript
import { Type } from "igniteui-webcomponents-core";
/**
* Indicates how filters across fields are combined.
*/
export declare enum FilterLogicalOperator {
/**
* The filters applied through the filter UI across multiple fields are AND'ed together.
*/
And = 0,
/**
* The filters applied through the filter UI across multiple fields are OR'ed together.
*/
Or = 1
}
/**
* @hidden
*/
export declare let FilterLogicalOperator_$type: Type;