| 1 | import { ValidationResult } from './result.model'; |
| 2 | |
| 3 | export interface FieldValidatorArgs { |
| 4 | value: any; |
| 5 | values?: any; |
| 6 | customArgs?: any; |
| 7 | message?: string | string[]; |
| 8 | } |
| 9 | |
| 10 | export type FieldValidationFunctionSync = ( |
| 11 | fieldValidatorArgs: FieldValidatorArgs |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…