Type Parameters

Hierarchy-Diagram

UML class diagram of ZodCatch
Legend
icon for a class in the UML class diagram class
icon for an abstract class in the UML class diagram abstract class
icon for a public property in the UML class diagram public property
icon for a public method in the UML class diagram public method
underlined static property/method
italic abstract property/method

Hierarchy (view full)

Constructors

Properties

_def: ZodCatchDef<T>
_input: unknown
_output: T["_output"]
_type: T["_output"]
spa: ((data: unknown, params?: Partial<ParseParams>) => Promise<SafeParseReturnType<unknown, T["_output"]>>)

Alias of safeParseAsync

Type declaration

create: (<T_1 extends ZodTypeAny>(type: T_1, params: {
    description?: string;
    errorMap?: ZodErrorMap;
    invalid_type_error?: string;
    message?: string;
    required_error?: string;
} & {
    catch: T_1["_output"] | (() => T_1["_output"]);
}) => ZodCatch<T_1>)

Type declaration

    • <T_1 extends ZodTypeAny>(type: T_1, params: {
          description?: string;
          errorMap?: ZodErrorMap;
          invalid_type_error?: string;
          message?: string;
          required_error?: string;
      } & {
          catch: T_1["_output"] | (() => T_1["_output"]);
      }): ZodCatch<T_1>
    • Type Parameters

      Parameters

      • type: T_1
      • params: {
            description?: string;
            errorMap?: ZodErrorMap;
            invalid_type_error?: string;
            message?: string;
            required_error?: string;
        } & {
            catch: T_1["_output"] | (() => T_1["_output"]);
        }

      Returns ZodCatch<T_1>

Accessors

  • get description(): undefined | string
  • Returns undefined | string

Methods

  • Parameters

    • def: T["_output"]

    Returns ZodCatch<ZodCatch<T>>

  • Parameters

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

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

          Returns T["_output"]

    Returns ZodCatch<ZodCatch<T>>

  • Parameters

    • description: string

    Returns this

  • Returns boolean

  • Returns boolean

  • Returns T