| 25 | } |
| 26 | |
| 27 | export interface FastifySchemaValidationError { |
| 28 | keyword: string; |
| 29 | instancePath: string; |
| 30 | schemaPath: string; |
| 31 | params: Record<string, unknown>; |
| 32 | message?: string; |
| 33 | } |
| 34 | |
| 35 | export interface FastifyValidationResult { |
| 36 | (data: any): boolean | SafePromiseLike<any> | { error?: Error | FastifySchemaValidationError[], value?: any } |
nothing calls this directly
no outgoing calls
no test coverage detected