UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

47 lines (46 loc) 1.71 kB
/** * Provides information about a schema change event. */ var IgxDataSourceDataProviderSchemaChangedEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgxDataSourceDataProviderSchemaChangedEventArgs() { } Object.defineProperty(IgxDataSourceDataProviderSchemaChangedEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgxDataSourceDataProviderSchemaChangedEventArgs.prototype.onImplementationCreated = function () { }; IgxDataSourceDataProviderSchemaChangedEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); }; Object.defineProperty(IgxDataSourceDataProviderSchemaChangedEventArgs.prototype, "schema", { /** * Represents the current schema for the data provider. */ get: function () { return this.i.schema; }, enumerable: false, configurable: true }); Object.defineProperty(IgxDataSourceDataProviderSchemaChangedEventArgs.prototype, "count", { /** * Represents the current full count for the data provider. May be -1 if this information is not available yet. */ get: function () { return this.i.count; }, enumerable: false, configurable: true }); return IgxDataSourceDataProviderSchemaChangedEventArgs; }()); export { IgxDataSourceDataProviderSchemaChangedEventArgs };