UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

29 lines (28 loc) 705 B
import { IgrBaseEventArgsDetail } from "./igr-base-event-args-detail"; import { ForOfStateDetail as ForOfStateDetail_internal } from "./ForOfStateDetail"; export class IgrForOfStateDetail extends IgrBaseEventArgsDetail { createImplementation() { return new ForOfStateDetail_internal(); } /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } get startIndex() { return this.i.h; } set startIndex(v) { this.i.h = +v; } get chunkSize() { return this.i.g; } set chunkSize(v) { this.i.g = +v; } }