UNPKG

igniteui-react-core

Version:
44 lines (43 loc) 1.77 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 { __extends } from "tslib"; import { EventArgs, markType } from "./type"; /** * @hidden */ var DownloadingMultiScaleImageEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DownloadingMultiScaleImageEventArgs, _super); function DownloadingMultiScaleImageEventArgs() { var _this = _super !== null && _super.apply(this, arguments) || this; _this._uri = null; _this._image = null; return _this; } Object.defineProperty(DownloadingMultiScaleImageEventArgs.prototype, "uri", { get: function () { return this._uri; }, set: function (a) { this._uri = a; }, enumerable: false, configurable: true }); Object.defineProperty(DownloadingMultiScaleImageEventArgs.prototype, "image", { get: function () { return this._image; }, set: function (a) { this._image = a; }, enumerable: false, configurable: true }); DownloadingMultiScaleImageEventArgs.$t = markType(DownloadingMultiScaleImageEventArgs, 'DownloadingMultiScaleImageEventArgs', EventArgs.$); return DownloadingMultiScaleImageEventArgs; }(EventArgs)); export { DownloadingMultiScaleImageEventArgs };