UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

61 lines (60 loc) 2.02 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebFilteringOperationDescription = /*@__PURE__*/ (() => { class WebFilteringOperationDescription extends Description { constructor() { super(); this.m = null; this.h = false; this.l = null; this.g = false; } get_type() { return "WebFilteringOperation"; } get type() { return this.get_type(); } get name() { return this.m; } set name(a) { this.m = a; this.e("Name"); } get isUnary() { return this.h; } set isUnary(a) { this.h = a; this.e("IsUnary"); } get iconName() { return this.l; } set iconName(a) { this.l = a; this.e("IconName"); } get hidden() { return this.g; } set hidden(a) { this.g = a; this.e("Hidden"); } } WebFilteringOperationDescription.$t = markType(WebFilteringOperationDescription, 'WebFilteringOperationDescription', Description.$); WebFilteringOperationDescription.__marshalByValue = true; WebFilteringOperationDescription.__marshalByValueAlias = "FilteringOperation"; return WebFilteringOperationDescription; })();