23 lines
933 B
TypeScript
23 lines
933 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CloudFileAvgAggregateInputObjectSchema: z.ZodType<Prisma.CloudFileAvgAggregateInputType>;
|
|
export declare const CloudFileAvgAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
userId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
fileSize: z.ZodOptional<z.ZodLiteral<true>>;
|
|
folderId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
totalChunks: z.ZodOptional<z.ZodLiteral<true>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: true | undefined;
|
|
userId?: true | undefined;
|
|
fileSize?: true | undefined;
|
|
totalChunks?: true | undefined;
|
|
folderId?: true | undefined;
|
|
}, {
|
|
id?: true | undefined;
|
|
userId?: true | undefined;
|
|
fileSize?: true | undefined;
|
|
totalChunks?: true | undefined;
|
|
folderId?: true | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CloudFileAvgAggregateInput.schema.d.ts.map
|