UNPKG

igniteui-react-core

Version:
92 lines (91 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 { 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.g = null; _this.f = null; _this.b = 0; _this.e = 0; _this.d = false; _this.d = true; _this.g = a; _this.b = b; _this.f = c; return _this; } DefaultSummaryResult.createWithDisplay = function (a, b, c, d) { var e = new DefaultSummaryResult(a, b, c); e.shouldDisplay = d; return e; }; 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.g; }, 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.f; }, set: function (a) { this.f = a; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultSummaryResult.prototype, "summaryIndex", { get: function () { return this.e; }, set: function (a) { this.e = a; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultSummaryResult.prototype, "shouldDisplay", { get: function () { return this.d; }, set: function (a) { this.d = a; }, enumerable: false, configurable: true }); DefaultSummaryResult.$t = markType(DefaultSummaryResult, 'DefaultSummaryResult', Base.$, [ISummaryResult_$type]); return DefaultSummaryResult; }(Base)); export { DefaultSummaryResult };