igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
37 lines (36 loc) • 1.55 kB
JavaScript
import { DataSourceRootSummariesChangedEventArgs as DataSourceRootSummariesChangedEventArgs_internal } from "./DataSourceRootSummariesChangedEventArgs";
/**
* Provides information about row expansion or collapse.
*/
var IgxDataSourceRootSummariesChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxDataSourceRootSummariesChangedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxDataSourceRootSummariesChangedEventArgs.prototype.createImplementation = function () {
return new DataSourceRootSummariesChangedEventArgs_internal();
};
Object.defineProperty(IgxDataSourceRootSummariesChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxDataSourceRootSummariesChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgxDataSourceRootSummariesChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
return IgxDataSourceRootSummariesChangedEventArgs;
}());
export { IgxDataSourceRootSummariesChangedEventArgs };