igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
37 lines (36 loc) • 1.51 kB
JavaScript
import { SortIndicatorRenderCompletedEventArgs as SortIndicatorRenderCompletedEventArgs_internal } from "./SortIndicatorRenderCompletedEventArgs";
var IgcSortIndicatorRenderCompletedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcSortIndicatorRenderCompletedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgcSortIndicatorRenderCompletedEventArgs.prototype.createImplementation = function () {
return new SortIndicatorRenderCompletedEventArgs_internal();
};
Object.defineProperty(IgcSortIndicatorRenderCompletedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcSortIndicatorRenderCompletedEventArgs.prototype.onImplementationCreated = function () {
};
IgcSortIndicatorRenderCompletedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgcSortIndicatorRenderCompletedEventArgs;
}());
export { IgcSortIndicatorRenderCompletedEventArgs };