igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
23 lines (22 loc) • 816 B
TypeScript
import { FilterStringErrorsParsingEventArgs as FilterStringErrorsParsingEventArgs_internal } from "./FilterStringErrorsParsingEventArgs";
/**
* Represents event arguments for when there are errors parsing the filter string
*/
export declare class IgxFilterStringErrorsParsingEventArgs {
protected createImplementation(): FilterStringErrorsParsingEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): FilterStringErrorsParsingEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
get propertyName(): string;
set propertyName(v: string);
/**
* Gets the errors from parsing the filter string.
*/
get errors(): string;
set errors(v: string);
}