interface ZodCatchDef<T extends ZodTypeAny> {
    catchValue: ((ctx: {
        error: ZodError<any>;
        input: unknown;
    }) => T["_input"]);
    description?: string;
    errorMap?: ZodErrorMap;
    innerType: T;
    typeName: ZodCatch;
}

Type Parameters

Hierarchy-Diagram

UML class diagram of ZodCatchDef
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property

Hierarchy (view full)

Properties

catchValue: ((ctx: {
    error: ZodError<any>;
    input: unknown;
}) => T["_input"])

Type declaration

    • (ctx: {
          error: ZodError<any>;
          input: unknown;
      }): T["_input"]
    • Parameters

      • ctx: {
            error: ZodError<any>;
            input: unknown;
        }

      Returns T["_input"]

description?: string
errorMap?: ZodErrorMap
innerType: T
typeName: ZodCatch