igniteui-react-core
Version:
Ignite UI React Core.
40 lines (39 loc) • 1.61 kB
JavaScript
/*
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 { __extends } from "tslib";
import { EventArgs, markType } from "./type";
/**
* @hidden
*/
var DataSourceSchemaChangedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataSourceSchemaChangedEventArgs, _super);
function DataSourceSchemaChangedEventArgs(a, b) {
var _this = _super.call(this) || this;
_this.d = 0;
_this.b = null;
_this.b = a;
_this.d = b;
return _this;
}
Object.defineProperty(DataSourceSchemaChangedEventArgs.prototype, "schema", {
get: function () {
return this.b;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSourceSchemaChangedEventArgs.prototype, "count", {
get: function () {
return this.d;
},
enumerable: false,
configurable: true
});
DataSourceSchemaChangedEventArgs.$t = markType(DataSourceSchemaChangedEventArgs, 'DataSourceSchemaChangedEventArgs', EventArgs.$);
return DataSourceSchemaChangedEventArgs;
}(EventArgs));
export { DataSourceSchemaChangedEventArgs };