26 lines
1.0 KiB
TypeScript
26 lines
1.0 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CloudFolderMinAggregateInputObjectSchema: z.ZodType<Prisma.CloudFolderMinAggregateInputType>;
|
|
export declare const CloudFolderMinAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
userId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
name: z.ZodOptional<z.ZodLiteral<true>>;
|
|
parentId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
createdAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: true | undefined;
|
|
id?: true | undefined;
|
|
userId?: true | undefined;
|
|
name?: true | undefined;
|
|
updatedAt?: true | undefined;
|
|
parentId?: true | undefined;
|
|
}, {
|
|
createdAt?: true | undefined;
|
|
id?: true | undefined;
|
|
userId?: true | undefined;
|
|
name?: true | undefined;
|
|
updatedAt?: true | undefined;
|
|
parentId?: true | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CloudFolderMinAggregateInput.schema.d.ts.map
|