Variable driveItemTypeSchemaConst
driveItemTypeSchema: ZodObject<
{
id: ZodString;
mimetype: ZodOptional<ZodString>;
title: ZodString;
type: ZodString;
webUrl: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
id: string;
mimetype?: string;
title: string;
type: string;
webUrl?: string;
},
{
id: string;
mimetype?: string;
title: string;
type: string;
webUrl?: string;
},
> = ...