UNPKG

igniteui-react-core

Version:
36 lines (35 loc) 1.35 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 { EventArgs, markType } from "./type"; /** * @hidden */ export let DataSourceDataCommittedEventArgs = /*@__PURE__*/ (() => { class DataSourceDataCommittedEventArgs extends EventArgs { get commitID() { return this._commitID; } set commitID(a) { this._commitID = a; } get changes() { return this._changes; } set changes(a) { this._changes = a; } constructor(a, b) { super(); this._commitID = 0; this._changes = null; this.commitID = a; this.changes = b; } } DataSourceDataCommittedEventArgs.$t = /*@__PURE__*/ markType(DataSourceDataCommittedEventArgs, 'DataSourceDataCommittedEventArgs', EventArgs.$); return DataSourceDataCommittedEventArgs; })();