igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
33 lines (32 loc) • 787 B
JavaScript
/**
* Provides information about a schema change event.
*/
export class IgxDataSourceDataProviderSchemaChangedEventArgs {
constructor() {
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
/**
* Represents the current schema for the data provider.
*/
get schema() {
return this.i.schema;
}
/**
* Represents the current full count for the data provider. May be -1 if this information is not available yet.
*/
get count() {
return this.i.count;
}
}