Variable r2BucketSchemaConst
r2BucketSchema: ZodObject<
{
id: ZodString;
location: ZodOptional<ZodString>;
name: ZodString;
storage_class: ZodOptional<ZodString>;
type: ZodLiteral<"r2_bucket">;
},
"strip",
ZodTypeAny,
{
id: string;
location?: string;
name: string;
storage_class?: string;
type: "r2_bucket";
},
{
id: string;
location?: string;
name: string;
storage_class?: string;
type: "r2_bucket";
},
> = ...
Runtime validator for R2Bucket.