Variable detectAddressConst

detectAddress: ZodObject<{
    bounceable: ZodObject<{
        b64: ZodString;
        b64url: ZodString;
    }, "strip", ZodTypeAny, {
        b64: string;
        b64url: string;
    }, {
        b64: string;
        b64url: string;
    }>;
    given_type: ZodUnion<[ZodLiteral<"raw_form">, ZodLiteral<"dns">, ZodLiteral<"friendly_bounceable">, ZodLiteral<"friendly_non_bounceable">]>;
    non_bounceable: ZodObject<{
        b64: ZodString;
        b64url: ZodString;
    }, "strip", ZodTypeAny, {
        b64: string;
        b64url: string;
    }, {
        b64: string;
        b64url: string;
    }>;
    raw_form: ZodString;
    test_only: ZodBoolean;
}, "strip", ZodTypeAny, {
    bounceable: { b64: string; b64url: string; };
    given_type: "raw_form" | "dns" | "friendly_bounceable" | "friendly_non_bounceable";
    non_bounceable: { b64: string; b64url: string; };
    raw_form: string;
    test_only: boolean;
}, {
    bounceable: { b64: string; b64url: string; };
    given_type: "raw_form" | "dns" | "friendly_bounceable" | "friendly_non_bounceable";
    non_bounceable: { b64: string; b64url: string; };
    raw_form: string;
    test_only: boolean;
}> = ...

Type declaration

  • bounceable: ZodObject<{
        b64: ZodString;
        b64url: ZodString;
    }, "strip", ZodTypeAny, {
        b64: string;
        b64url: string;
    }, {
        b64: string;
        b64url: string;
    }>
  • given_type: ZodUnion<[ZodLiteral<"raw_form">, ZodLiteral<"dns">, ZodLiteral<"friendly_bounceable">, ZodLiteral<"friendly_non_bounceable">]>
  • non_bounceable: ZodObject<{
        b64: ZodString;
        b64url: ZodString;
    }, "strip", ZodTypeAny, {
        b64: string;
        b64url: string;
    }, {
        b64: string;
        b64url: string;
    }>
  • raw_form: ZodString
  • test_only: ZodBoolean

Type declaration

  • bounceable: { b64: string; b64url: string; }
  • given_type: "raw_form" | "dns" | "friendly_bounceable" | "friendly_non_bounceable"
  • non_bounceable: { b64: string; b64url: string; }
  • raw_form: string
  • test_only: boolean

Type declaration

  • bounceable: { b64: string; b64url: string; }
  • given_type: "raw_form" | "dns" | "friendly_bounceable" | "friendly_non_bounceable"
  • non_bounceable: { b64: string; b64url: string; }
  • raw_form: string
  • test_only: boolean

Generated using TypeDoc