Interface ZodInvalidReturnTypeIssue

interface ZodInvalidReturnTypeIssue {
    code: "invalid_return_type";
    message?: string;
    path: (string | number)[];
    returnTypeError: Zod.z.ZodError<any>;
}

Hierarchy (View Summary)

Properties

code: "invalid_return_type"
message?: string
path: (string | number)[]
returnTypeError: Zod.z.ZodError<any>