igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
28 lines (27 loc) • 794 B
JavaScript
import { OnClosedEventArgs as OnClosedEventArgs_internal } from "./OnClosedEventArgs";
export class IgxOnClosedEventArgs {
constructor() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
createImplementation() {
return new OnClosedEventArgs_internal();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
}