UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

95 lines (94 loc) 3.37 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var WebFilteringOperationDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebFilteringOperationDescription, _super); function WebFilteringOperationDescription() { var _this = _super.call(this) || this; _this.n = false; _this.m = false; _this.s = null; _this.l = false; _this.t = null; return _this; } WebFilteringOperationDescription.prototype.get_type = function () { return "WebFilteringOperation"; }; Object.defineProperty(WebFilteringOperationDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebFilteringOperationDescription.prototype, "isUnary", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("IsUnary"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFilteringOperationDescription.prototype, "isNestedQuery", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("IsNestedQuery"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFilteringOperationDescription.prototype, "iconName", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("IconName"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFilteringOperationDescription.prototype, "hidden", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("Hidden"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFilteringOperationDescription.prototype, "logicRef", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("LogicRef"); }, enumerable: false, configurable: true }); WebFilteringOperationDescription.$t = markType(WebFilteringOperationDescription, 'WebFilteringOperationDescription', Description.$); WebFilteringOperationDescription.__marshalByValue = true; WebFilteringOperationDescription.__marshalByValueAlias = "FilteringOperation"; return WebFilteringOperationDescription; }(Description)); export { WebFilteringOperationDescription };