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