igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
40 lines (39 loc) • 1.5 kB
JavaScript
import { TransitionOutCompletedEventArgs as TransitionOutCompletedEventArgs_internal } from "./TransitionOutCompletedEventArgs";
/**
* EventArgs class for TransitionOutCompleted events.
*/
var IgcTransitionOutCompletedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcTransitionOutCompletedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgcTransitionOutCompletedEventArgs.prototype.createImplementation = function () {
return new TransitionOutCompletedEventArgs_internal();
};
Object.defineProperty(IgcTransitionOutCompletedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcTransitionOutCompletedEventArgs.prototype.onImplementationCreated = function () {
};
IgcTransitionOutCompletedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgcTransitionOutCompletedEventArgs;
}());
export { IgcTransitionOutCompletedEventArgs };