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