igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
44 lines (43 loc) • 1.71 kB
JavaScript
import { CancellingMultiScaleImageEventArgs as CancellingMultiScaleImageEventArgs_internal } from "./CancellingMultiScaleImageEventArgs";
var IgxCancellingMultiScaleImageEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxCancellingMultiScaleImageEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxCancellingMultiScaleImageEventArgs.prototype.createImplementation = function () {
return new CancellingMultiScaleImageEventArgs_internal();
};
Object.defineProperty(IgxCancellingMultiScaleImageEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxCancellingMultiScaleImageEventArgs.prototype.onImplementationCreated = function () {
};
IgxCancellingMultiScaleImageEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgxCancellingMultiScaleImageEventArgs.prototype, "uri", {
get: function () {
return this.i.uri;
},
set: function (v) {
this.i.uri = v;
},
enumerable: false,
configurable: true
});
return IgxCancellingMultiScaleImageEventArgs;
}());
export { IgxCancellingMultiScaleImageEventArgs };