igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
44 lines (43 loc) • 1.81 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 CancellingMultiScaleImageEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CancellingMultiScaleImageEventArgs, _super);
function CancellingMultiScaleImageEventArgs() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this._uri = null;
_this._image = null;
return _this;
}
Object.defineProperty(CancellingMultiScaleImageEventArgs.prototype, "uri", {
get: function () {
return this._uri;
},
set: function (a) {
this._uri = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CancellingMultiScaleImageEventArgs.prototype, "image", {
get: function () {
return this._image;
},
set: function (a) {
this._image = a;
},
enumerable: false,
configurable: true
});
CancellingMultiScaleImageEventArgs.$t = markType(CancellingMultiScaleImageEventArgs, 'CancellingMultiScaleImageEventArgs', EventArgs.$);
return CancellingMultiScaleImageEventArgs;
}(EventArgs));
export { CancellingMultiScaleImageEventArgs };