UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

45 lines (44 loc) 1.45 kB
import { __extends } from "tslib"; import { IgrBaseEventArgsDetail } from "./igr-base-event-args-detail"; import { ForOfStateDetail as ForOfStateDetail_internal } from "./ForOfStateDetail"; var IgrForOfStateDetail = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrForOfStateDetail, _super); function IgrForOfStateDetail() { return _super.call(this) || this; } IgrForOfStateDetail.prototype.createImplementation = function () { return new ForOfStateDetail_internal(); }; Object.defineProperty(IgrForOfStateDetail.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgrForOfStateDetail.prototype, "startIndex", { get: function () { return this.i.h; }, set: function (v) { this.i.h = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrForOfStateDetail.prototype, "chunkSize", { get: function () { return this.i.g; }, set: function (v) { this.i.g = +v; }, enumerable: false, configurable: true }); return IgrForOfStateDetail; }(IgrBaseEventArgsDetail)); export { IgrForOfStateDetail };