UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

25 lines (24 loc) 1.16 kB
import { IgrGridValidationStatusEventArgsDetail } from "./igr-grid-validation-status-event-args-detail"; import { GridValidationStatusEventArgs as GridValidationStatusEventArgs_internal } from "./GridValidationStatusEventArgs"; import { ContentChildrenManager } from "igniteui-react-core"; /** * Interface representing the event arguments for the grid validation status change event. * - status: The validation status ('VALID' or 'INVALID'). * - owner: The grid instance that owns the validation state. */ export declare class IgrGridValidationStatusEventArgs { protected createImplementation(): GridValidationStatusEventArgs_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): GridValidationStatusEventArgs_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; get detail(): IgrGridValidationStatusEventArgsDetail; set detail(v: IgrGridValidationStatusEventArgsDetail); }