igniteui-react-grids
Version:
Ignite UI React grid components.
11 lines (10 loc) • 352 B
TypeScript
import { IgrValidationErrors } from "./igr-validation-errors";
/**
* Interface representing the validation state of a grid.
* - status: The validation status ('VALID' or 'INVALID').
* - errors: The validation errors if any.
*/
export interface IgrGridValidationState {
status?: 'VALID' | 'INVALID';
errors?: IgrValidationErrors;
}