UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

75 lines (74 loc) 2.52 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 { Base, markType } from "./type"; import { ISummaryResult_$type } from "./ISummaryResult"; /** * @hidden */ var DefaultSummaryResult = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DefaultSummaryResult, _super); function DefaultSummaryResult(a, b, c) { var _this = _super.call(this) || this; _this.a = null; _this.e = null; _this.d = null; _this.b = 0; _this.c = 0; _this.e = a; _this.b = b; _this.d = c; return _this; } Object.defineProperty(DefaultSummaryResult.prototype, "groupKey", { get: function () { return this.a; }, set: function (a) { this.a = a; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultSummaryResult.prototype, "propertyName", { get: function () { return this.e; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultSummaryResult.prototype, "operand", { get: function () { return this.b; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultSummaryResult.prototype, "value", { get: function () { return this.d; }, set: function (a) { this.d = a; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultSummaryResult.prototype, "summaryIndex", { get: function () { return this.c; }, set: function (a) { this.c = a; }, enumerable: false, configurable: true }); DefaultSummaryResult.$t = markType(DefaultSummaryResult, 'DefaultSummaryResult', Base.$, [ISummaryResult_$type]); return DefaultSummaryResult; }(Base)); export { DefaultSummaryResult };