igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
34 lines (33 loc) • 1.31 kB
JavaScript
import { RefreshCompletedEventArgs as RefreshCompletedEventArgs_internal } from "./RefreshCompletedEventArgs";
var IgxRefreshCompletedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxRefreshCompletedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxRefreshCompletedEventArgs.prototype.createImplementation = function () {
return new RefreshCompletedEventArgs_internal();
};
Object.defineProperty(IgxRefreshCompletedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxRefreshCompletedEventArgs.prototype.onImplementationCreated = function () {
};
IgxRefreshCompletedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
return IgxRefreshCompletedEventArgs;
}());
export { IgxRefreshCompletedEventArgs };