| 585 | } |
| 586 | |
| 587 | export interface IValidator { |
| 588 | validate: ( |
| 589 | req: AxeRequest, |
| 590 | model: IModelService, |
| 591 | formData: any, |
| 592 | ) => Promise<null | IValidationError>; |
| 593 | } |
| 594 | |
| 595 | export interface IValidationError { |
| 596 | errors: Record<string, string[]>; |
nothing calls this directly
no outgoing calls
no test coverage detected