Variable JsonAbortErrorSchemaConst
JsonAbortErrorSchema: ZodObject<
{
customSections: ZodOptional<
ZodArray<
ZodObject<
{
body: ZodUnion<
[ZodString, ZodArray<ZodArray<ZodString, "many">, "many">],
>;
title: ZodOptional<ZodString>;
},
"strict",
ZodTypeAny,
{ body: string
| string[][]; title?: string },
{ body: string | string[][]; title?: string },
>,
"many",
>,
>;
details: ZodOptional<ZodUnknown>;
message: ZodString;
nextSteps: ZodOptional<ZodArray<ZodString, "many">>;
tryMessage: ZodOptional<ZodString>;
type: ZodLiteral<"abort">;
},
"strict",
ZodTypeAny,
{
customSections?: { body: string
| string[][]; title?: string }[];
details?: unknown;
message: string;
nextSteps?: string[];
tryMessage?: string;
type: "abort";
},
{
customSections?: { body: string
| string[][]; title?: string }[];
details?: unknown;
message: string;
nextSteps?: string[];
tryMessage?: string;
type: "abort";
},
> = ...