Type Alias AutoParseConfig
AutoParseConfig:
| boolean
| Record<
"parameters",
| boolean
| {
onError?: (
request: FastifyRequest,
reply: FastifyReply,
errors: {
in: "query" | "path" | "header";
message: string;
name: string;
}[],
) => FastifyReply
| undefined;
parse?: boolean;
},
>