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