igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
34 lines (33 loc) • 1.22 kB
JavaScript
import { OnClosedEventArgs as OnClosedEventArgs_internal } from "./OnClosedEventArgs";
var IgxOnClosedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxOnClosedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxOnClosedEventArgs.prototype.createImplementation = function () {
return new OnClosedEventArgs_internal();
};
Object.defineProperty(IgxOnClosedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxOnClosedEventArgs.prototype.onImplementationCreated = function () {
};
IgxOnClosedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
return IgxOnClosedEventArgs;
}());
export { IgxOnClosedEventArgs };