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

14 lines
823 B
TypeScript

import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
export declare const PatientCreateManySchema: z.ZodType<Prisma.PatientCreateManyArgs>;
export declare const PatientCreateManyZodSchema: z.ZodObject<{
data: z.ZodUnion<[z.ZodType<Prisma.PatientCreateManyInput, z.ZodTypeDef, Prisma.PatientCreateManyInput>, z.ZodArray<z.ZodType<Prisma.PatientCreateManyInput, z.ZodTypeDef, Prisma.PatientCreateManyInput>, "many">]>;
skipDuplicates: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
data: Prisma.PatientCreateManyInput | Prisma.PatientCreateManyInput[];
skipDuplicates?: boolean | undefined;
}, {
data: Prisma.PatientCreateManyInput | Prisma.PatientCreateManyInput[];
skipDuplicates?: boolean | undefined;
}>;
//# sourceMappingURL=createManyPatient.schema.d.ts.map