Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/CloudFolderCreateManyParentInput.schema.d.ts
2026-04-04 22:13:55 -04:00

23 lines
829 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CloudFolderCreateManyParentInputObjectSchema: z.ZodType<Prisma.CloudFolderCreateManyParentInput>;
export declare const CloudFolderCreateManyParentInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodNumber>;
userId: z.ZodNumber;
name: z.ZodString;
createdAt: z.ZodOptional<z.ZodDate>;
updatedAt: z.ZodOptional<z.ZodDate>;
}, "strict", z.ZodTypeAny, {
userId: number;
name: string;
createdAt?: Date | undefined;
id?: number | undefined;
updatedAt?: Date | undefined;
}, {
userId: number;
name: string;
createdAt?: Date | undefined;
id?: number | undefined;
updatedAt?: Date | undefined;
}>;
//# sourceMappingURL=CloudFolderCreateManyParentInput.schema.d.ts.map