Interface ZodInvalidReturnTypeIssue

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

Hierarchy (view full)

Properties

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

Generated using TypeDoc