UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

61 lines (60 loc) 1.99 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 WebSummaryResultDescription = /*@__PURE__*/ (() => { class WebSummaryResultDescription extends Description { constructor() { super(); this.q = null; this.r = null; this.n = null; this.l = false; } get_type() { return "WebSummaryResult"; } get type() { return this.get_type(); } get key() { return this.q; } set key(a) { this.q = a; this.j("Key"); } get label() { return this.r; } set label(a) { this.r = a; this.j("Label"); } get result() { return this.n; } set result(a) { this.n = a; this.j("Result"); } get defaultFormatting() { return this.l; } set defaultFormatting(a) { this.l = a; this.j("DefaultFormatting"); } } WebSummaryResultDescription.$t = markType(WebSummaryResultDescription, 'WebSummaryResultDescription', Description.$); WebSummaryResultDescription.__marshalByValue = true; WebSummaryResultDescription.__marshalByValueAlias = "SummaryResult"; return WebSummaryResultDescription; })();