UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

53 lines (52 loc) 1.7 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 { BaseEventArgs } from "./BaseEventArgs"; import { WCNativeHelper } from "igniteui-react"; import { markType } from "igniteui-react-core"; /** * @hidden */ export let ForOfState = /*@__PURE__*/ (() => { class ForOfState extends BaseEventArgs { constructor() { super(...arguments); this.c = new WCNativeHelper(); this.g = null; } get d() { return this.c; } get nativeElement() { return this.g; } set nativeElement(a) { this.g = a; this.c.o = this.g; } setNativeElement(a) { this.nativeElement = a; } get f() { let ret_ = this.d.n("startIndex"); return ret_; } set f(a) { let value_ = a; this.d.w("startIndex", value_); } get e() { let ret_ = this.d.n("chunkSize"); return ret_; } set e(a) { let value_ = a; this.d.w("chunkSize", value_); } } ForOfState.$t = /*@__PURE__*/ markType(ForOfState, 'ForOfState', BaseEventArgs.$); return ForOfState; })();