| 16 | } |
| 17 | |
| 18 | export interface FastifyRouteSchemaDef<T> { |
| 19 | schema: T; |
| 20 | method: string; |
| 21 | url: string; |
| 22 | httpPart?: string; |
| 23 | httpStatus?: string; |
| 24 | contentType?: string; |
| 25 | } |
| 26 | |
| 27 | export interface FastifySchemaValidationError { |
| 28 | keyword: string; |
nothing calls this directly
no outgoing calls
no test coverage detected