igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
33 lines (32 loc) • 732 B
JavaScript
/**
* Provides information about a schema change event that has occurred.
*/
export class IgxDataSourceSchemaChangedEventArgs {
constructor() {
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
/**
* Gets the new schema that has been provided.
*/
get schema() {
return this.i.schema;
}
/**
* Gets the current full count of items in the data source.
*/
get count() {
return this.i.count;
}
}