UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

25 lines (24 loc) 946 B
import { IDataSourceSchema } from "./IDataSourceSchema"; import { DataSourceDataProviderSchemaChangedEventArgs as DataSourceDataProviderSchemaChangedEventArgs_internal } from "./DataSourceDataProviderSchemaChangedEventArgs"; /** * Provides information about a schema change event. */ export declare class IgxDataSourceDataProviderSchemaChangedEventArgs { protected _implementation: any; /** * @hidden */ get i(): DataSourceDataProviderSchemaChangedEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * Represents the current schema for the data provider. */ get schema(): IDataSourceSchema; /** * Represents the current full count for the data provider. May be -1 if this information is not available yet. */ get count(): number; static ngAcceptInputType_count: number | string; }