igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
31 lines (30 loc) • 928 B
JavaScript
import { TransitionOutCompletedEventArgs as TransitionOutCompletedEventArgs_internal } from "./TransitionOutCompletedEventArgs";
/**
* EventArgs class for TransitionOutCompleted events.
*/
export class IgxTransitionOutCompletedEventArgs {
constructor() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
createImplementation() {
return new TransitionOutCompletedEventArgs_internal();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
}