Variable zCustomCallConst
zCustomCall: z.ZodObject<{
metadata: z.ZodObject<{
propDescription: z.ZodOptional<z.ZodString>;
propTitle: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
propDescription?: string;
propTitle?: string;
}, {
propDescription?: string;
propTitle?: string;
}>;
} & {
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
cdata: z.ZodEffects<z.ZodString, string, string>;
propType: z.ZodLiteral<"customCall">;
}, "strip", z.ZodTypeAny, {
address: string;
cdata: string;
metadata: {
propDescription?: string;
propTitle?: string;
};
propType: "customCall";
}, {
address: string;
cdata: string;
metadata: {
propDescription?: string;
propTitle?: string;
};
propType: "customCall";
}>