igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
37 lines (36 loc) • 1.37 kB
JavaScript
import { RefreshCompletedEventArgs as RefreshCompletedEventArgs_internal } from "./RefreshCompletedEventArgs";
var IgcRefreshCompletedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcRefreshCompletedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgcRefreshCompletedEventArgs.prototype.createImplementation = function () {
return new RefreshCompletedEventArgs_internal();
};
Object.defineProperty(IgcRefreshCompletedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcRefreshCompletedEventArgs.prototype.onImplementationCreated = function () {
};
IgcRefreshCompletedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgcRefreshCompletedEventArgs;
}());
export { IgcRefreshCompletedEventArgs };