UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

83 lines (82 loc) 2.93 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 WebSummaryResultDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebSummaryResultDescription, _super); function WebSummaryResultDescription() { var _this = _super.call(this) || this; _this.q = null; _this.r = null; _this.n = null; _this.l = false; return _this; } WebSummaryResultDescription.prototype.get_type = function () { return "WebSummaryResult"; }; Object.defineProperty(WebSummaryResultDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebSummaryResultDescription.prototype, "key", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("Key"); }, enumerable: false, configurable: true }); Object.defineProperty(WebSummaryResultDescription.prototype, "label", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("Label"); }, enumerable: false, configurable: true }); Object.defineProperty(WebSummaryResultDescription.prototype, "result", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("Result"); }, enumerable: false, configurable: true }); Object.defineProperty(WebSummaryResultDescription.prototype, "defaultFormatting", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("DefaultFormatting"); }, enumerable: false, configurable: true }); WebSummaryResultDescription.$t = markType(WebSummaryResultDescription, 'WebSummaryResultDescription', Description.$); WebSummaryResultDescription.__marshalByValue = true; WebSummaryResultDescription.__marshalByValueAlias = "SummaryResult"; return WebSummaryResultDescription; }(Description)); export { WebSummaryResultDescription };