igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
37 lines (36 loc) • 1.45 kB
JavaScript
import { TransitionOutCompletedEventArgs as TransitionOutCompletedEventArgs_internal } from "./TransitionOutCompletedEventArgs";
/**
* EventArgs class for TransitionOutCompleted events.
*/
var IgxTransitionOutCompletedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxTransitionOutCompletedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxTransitionOutCompletedEventArgs.prototype.createImplementation = function () {
return new TransitionOutCompletedEventArgs_internal();
};
Object.defineProperty(IgxTransitionOutCompletedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxTransitionOutCompletedEventArgs.prototype.onImplementationCreated = function () {
};
IgxTransitionOutCompletedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
return IgxTransitionOutCompletedEventArgs;
}());
export { IgxTransitionOutCompletedEventArgs };