igniteui-react-core
Version:
Ignite UI React Core.
48 lines (47 loc) • 1.7 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { ColumnFilterConditionDescription } from "./ColumnFilterConditionDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ColumnCustomFilterConditionDescription = /*@__PURE__*/ (() => {
class ColumnCustomFilterConditionDescription extends ColumnFilterConditionDescription {
get_type() {
return "ColumnCustomFilterCondition";
}
constructor() {
super();
this.l = null;
this.k = null;
this.i = 0;
}
get valueRef() {
return this.l;
}
set valueRef(a) {
this.l = a;
this.g("ValueRef");
}
get id() {
return this.k;
}
set id(a) {
this.k = a;
this.g("Id");
}
get index() {
return this.i;
}
set index(a) {
this.i = a;
this.g("Index");
}
}
ColumnCustomFilterConditionDescription.$t = /*@__PURE__*/ markType(ColumnCustomFilterConditionDescription, 'ColumnCustomFilterConditionDescription', ColumnFilterConditionDescription.$);
return ColumnCustomFilterConditionDescription;
})();