Variable bookmarkCustomSchemaConst
bookmarkCustomSchema: ZodObject<
{
bookmarkLabel: ZodOptional<ZodString>;
bookmarkMeta: ZodNullable<ZodOptional<ZodString>>;
bookmarkUrl: ZodNullable<ZodOptional<ZodString>>;
},
"strip",
ZodTypeAny,
{
bookmarkLabel?: string;
bookmarkMeta?: string
| null;
bookmarkUrl?: string | null;
},
{
bookmarkLabel?: string;
bookmarkMeta?: string
| null;
bookmarkUrl?: string | null;
},
> = ...