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