initial commit
This commit is contained in:
20
packages/db/shared/schemas/objects/CloudFileChunkCreateInput.schema.d.ts
vendored
Normal file
20
packages/db/shared/schemas/objects/CloudFileChunkCreateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
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
|
||||
Reference in New Issue
Block a user