igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
47 lines (46 loc) • 1.56 kB
JavaScript
/**
* Provides information about a schema change event that has occurred.
*/
var IgxDataSourceSchemaChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxDataSourceSchemaChangedEventArgs() {
}
Object.defineProperty(IgxDataSourceSchemaChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxDataSourceSchemaChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgxDataSourceSchemaChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgxDataSourceSchemaChangedEventArgs.prototype, "schema", {
/**
* Gets the new schema that has been provided.
*/
get: function () {
return this.i.schema;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxDataSourceSchemaChangedEventArgs.prototype, "count", {
/**
* Gets the current full count of items in the data source.
*/
get: function () {
return this.i.count;
},
enumerable: false,
configurable: true
});
return IgxDataSourceSchemaChangedEventArgs;
}());
export { IgxDataSourceSchemaChangedEventArgs };