igniteui-react-core
Version:
Ignite UI React Core.
48 lines (47 loc) • 1.84 kB
JavaScript
import { DownloadingMultiScaleImageEventArgs as DownloadingMultiScaleImageEventArgs_internal } from "./DownloadingMultiScaleImageEventArgs";
var IgrDownloadingMultiScaleImageEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrDownloadingMultiScaleImageEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
}
IgrDownloadingMultiScaleImageEventArgs.prototype.createImplementation = function () {
return new DownloadingMultiScaleImageEventArgs_internal();
};
Object.defineProperty(IgrDownloadingMultiScaleImageEventArgs.prototype, "i", {
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrDownloadingMultiScaleImageEventArgs.prototype.onImplementationCreated = function () {
};
IgrDownloadingMultiScaleImageEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgrDownloadingMultiScaleImageEventArgs.prototype, "image", {
get: function () {
return this.i.image;
},
set: function (v) {
this.i.image = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrDownloadingMultiScaleImageEventArgs.prototype, "uri", {
get: function () {
return this.i.uri;
},
set: function (v) {
this.i.uri = v;
},
enumerable: false,
configurable: true
});
return IgrDownloadingMultiScaleImageEventArgs;
}());
export { IgrDownloadingMultiScaleImageEventArgs };