UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

48 lines (47 loc) 1.73 kB
/* 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 { constructor() { super(); this.o = null; this.n = null; this.l = 0; } get_type() { return "ColumnCustomFilterCondition"; } get valueRef() { return this.o; } set valueRef(a) { this.o = a; this.j("ValueRef"); } get id() { return this.n; } set id(a) { this.n = a; this.j("Id"); } get index() { return this.l; } set index(a) { this.l = a; this.j("Index"); } } ColumnCustomFilterConditionDescription.$t = markType(ColumnCustomFilterConditionDescription, 'ColumnCustomFilterConditionDescription', ColumnFilterConditionDescription.$); return ColumnCustomFilterConditionDescription; })();