Variable JsonErrorCustomSectionSchemaConst
JsonErrorCustomSectionSchema: ZodObject<
{
body: ZodUnion<
[ZodString, ZodArray<ZodArray<ZodString, "many">, "many">],
>;
title: ZodOptional<ZodString>;
},
"strict",
ZodTypeAny,
{ body: string
| string[][]; title?: string },
{ body: string | string[][]; title?: string },
> = ...