UNPKG

igniteui-react-core

Version:
52 lines (51 loc) 2.01 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 { WebBaseEventArgsDescription } from "./WebBaseEventArgsDescription"; import { markType } from "./type"; /** * @hidden */ var WebForOfStateDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebForOfStateDescription, _super); function WebForOfStateDescription() { var _this = _super.call(this) || this; _this.o = 0; _this.n = 0; return _this; } WebForOfStateDescription.prototype.get_type = function () { return "WebForOfState"; }; Object.defineProperty(WebForOfStateDescription.prototype, "startIndex", { get: function () { return this.o; }, set: function (a) { this.o = a; this.g("StartIndex"); }, enumerable: false, configurable: true }); Object.defineProperty(WebForOfStateDescription.prototype, "chunkSize", { get: function () { return this.n; }, set: function (a) { this.n = a; this.g("ChunkSize"); }, enumerable: false, configurable: true }); WebForOfStateDescription.$t = markType(WebForOfStateDescription, 'WebForOfStateDescription', WebBaseEventArgsDescription.$); WebForOfStateDescription.__marshalByValue1 = true; WebForOfStateDescription.__marshalByValueAlias1 = "ForOfState"; return WebForOfStateDescription; }(WebBaseEventArgsDescription)); export { WebForOfStateDescription };