Variable ExportedImageConst
ExportedImage: ZodObject<
{
contentType: $ZodBranded<
ZodEnum<
{
"image/gif": "image/gif";
"image/jpeg": "image/jpeg";
"image/png": "image/png";
"image/webp": "image/webp";
jpeg: "jpeg";
png: "png";
webp: "webp";
},
>,
"ContentType",
"out",
>;
createdAt: $ZodBranded<ZodDate, "CreatedAt", "out">;
exportedAt: $ZodBranded<ZodDate, "ExportedAt", "out">;
fileSize: $ZodBranded<ZodNumber, "FileSize", "out">;
height: $ZodBranded<ZodOptional<ZodNumber>, "Pixel", "out">;
id: $ZodBranded<ZodDefault<ZodUUID>, "Id", "out">;
path: $ZodBranded<ZodString, "Path", "out">;
status: ZodLiteral<"EXPORTED">;
userId: $ZodBranded<ZodString, "UserId", "out">;
width: $ZodBranded<ZodOptional<ZodNumber>, "Pixel", "out">;
},
$strip,
> = ...
Zod schema for an exported image.