| 1 | import { ValidationError } from 'yup' |
| 2 | |
| 3 | interface Errors { |
| 4 | [key: string]: string |
| 5 | } |
| 6 | |
| 7 | export default function getValidationErrors(err: ValidationError): Errors { |
| 8 | const validationErrors: Errors = {} |
nothing calls this directly
no outgoing calls
no test coverage detected