UNPKG

igniteui-react-core

Version:
68 lines (67 loc) 2.4 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 { ISectionInformation_$type } from "./ISectionInformation"; /** * @hidden */ var DefaultSectionInformation = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DefaultSectionInformation, _super); function DefaultSectionInformation(a, b, c, d, e) { var _this = _super.call(this) || this; _this.e = 0; _this.d = 0; _this.a = null; _this.b = null; _this.c = null; _this.e = a; _this.d = b; _this.a = c; _this.b = d; _this.c = e; return _this; } Object.defineProperty(DefaultSectionInformation.prototype, "startIndex", { get: function () { return this.e; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultSectionInformation.prototype, "endIndex", { get: function () { return this.d; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultSectionInformation.prototype, "groupKeyValues", { get: function () { return this.b; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultSectionInformation.prototype, "groupKeyProperties", { get: function () { return this.a; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultSectionInformation.prototype, "summaryResults", { get: function () { return this.c; }, enumerable: false, configurable: true }); DefaultSectionInformation.$t = markType(DefaultSectionInformation, 'DefaultSectionInformation', Base.$, [ISectionInformation_$type]); return DefaultSectionInformation; }(Base)); export { DefaultSectionInformation };