20 lines
955 B
TypeScript
20 lines
955 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CloudFileChunkCreateInputObjectSchema: z.ZodType<Prisma.CloudFileChunkCreateInput>;
|
|
export declare const CloudFileChunkCreateInputObjectZodSchema: z.ZodObject<{
|
|
seq: z.ZodNumber;
|
|
data: z.ZodType<Uint8Array<ArrayBuffer>, z.ZodTypeDef, Uint8Array<ArrayBuffer>>;
|
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
file: z.ZodLazy<z.ZodType<Prisma.CloudFileCreateNestedOneWithoutChunksInput, z.ZodTypeDef, Prisma.CloudFileCreateNestedOneWithoutChunksInput>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
data: Uint8Array<ArrayBuffer>;
|
|
seq: number;
|
|
file: Prisma.CloudFileCreateNestedOneWithoutChunksInput;
|
|
createdAt?: Date | undefined;
|
|
}, {
|
|
data: Uint8Array<ArrayBuffer>;
|
|
seq: number;
|
|
file: Prisma.CloudFileCreateNestedOneWithoutChunksInput;
|
|
createdAt?: Date | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CloudFileChunkCreateInput.schema.d.ts.map
|