Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/CloudFileChunkCreateWithoutFileInput.schema.d.ts
2026-04-04 22:13:55 -04:00

17 lines
729 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CloudFileChunkCreateWithoutFileInputObjectSchema: z.ZodType<Prisma.CloudFileChunkCreateWithoutFileInput>;
export declare const CloudFileChunkCreateWithoutFileInputObjectZodSchema: z.ZodObject<{
seq: z.ZodNumber;
data: z.ZodType<Uint8Array<ArrayBuffer>, z.ZodTypeDef, Uint8Array<ArrayBuffer>>;
createdAt: z.ZodOptional<z.ZodDate>;
}, "strict", z.ZodTypeAny, {
data: Uint8Array<ArrayBuffer>;
seq: number;
createdAt?: Date | undefined;
}, {
data: Uint8Array<ArrayBuffer>;
seq: number;
createdAt?: Date | undefined;
}>;
//# sourceMappingURL=CloudFileChunkCreateWithoutFileInput.schema.d.ts.map