Variable faqHookPropertiesSchemaConst
faqHookPropertiesSchema: ZodObject<
{
_displayComment: ZodOptional<
ZodUnion<[ZodLiteral<"0">, ZodLiteral<"1">, ZodLiteral<"">]>,
>;
_web: ZodOptional<
ZodUnion<[ZodLiteral<"0">, ZodLiteral<"1">, ZodLiteral<"">]>,
>;
appImage: ZodOptional<
ZodUnion<
[
ZodString,
ZodObject<
{
image: ZodObject<
{ id: ZodString; type: ZodString },
"strip",
ZodTypeAny,
{ id: string; type: string },
{ id: string; type: string },
>;
},
"strip",
ZodTypeAny,
{ image: { id: string; type: string } },
{ image: { id: string; type: string } },
>,
],
>,
>;
appImageText: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
_displayComment?: ""
| "0"
| "1";
_web?: "" | "0" | "1";
appImage?: string | { image: { id: string; type: string } };
appImageText?: string;
},
{
_displayComment?: ""
| "0"
| "1";
_web?: "" | "0" | "1";
appImage?: string | { image: { id: string; type: string } };
appImageText?: string;
},
> = ...