UNPKG

blow-data

Version:
14 lines (13 loc) 377 B
import { IValidationResult } from './interfaces'; export declare class ValidationResult implements IValidationResult { protected _errors: any[]; constructor(errors: any); isValid: boolean; errors: any[]; getInvalidProperties(): any; getPropertyErrors(propertyName: string): any; toJSON(): { isValid: boolean; errors: any[]; }; }