igniteui-react-grids
Version:
Ignite UI React grid components.
52 lines (51 loc) • 1.58 kB
JavaScript
import { __extends } from "tslib";
import { IgrBaseEventArgs } from "./igr-base-event-args";
import { ForOfState as ForOfState_internal } from "./ForOfState";
var IgrForOfState = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrForOfState, _super);
function IgrForOfState() {
return _super.call(this) || this;
}
IgrForOfState.prototype.createImplementation = function () {
var impl = new ForOfState_internal();
if (impl.setNativeElement) {
impl.setNativeElement({});
}
return impl;
};
Object.defineProperty(IgrForOfState.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrForOfState.prototype, "startIndex", {
get: function () {
return this.i.f;
},
set: function (v) {
this.i.f = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrForOfState.prototype, "chunkSize", {
get: function () {
return this.i.e;
},
set: function (v) {
this.i.e = +v;
},
enumerable: false,
configurable: true
});
IgrForOfState.prototype.setNativeElement = function (element) {
this.i.setNativeElement(element);
};
return IgrForOfState;
}(IgrBaseEventArgs));
export { IgrForOfState };