14 lines
799 B
TypeScript
14 lines
799 B
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
export declare const StaffCreateManySchema: z.ZodType<Prisma.StaffCreateManyArgs>;
|
|
export declare const StaffCreateManyZodSchema: z.ZodObject<{
|
|
data: z.ZodUnion<[z.ZodType<Prisma.StaffCreateManyInput, z.ZodTypeDef, Prisma.StaffCreateManyInput>, z.ZodArray<z.ZodType<Prisma.StaffCreateManyInput, z.ZodTypeDef, Prisma.StaffCreateManyInput>, "many">]>;
|
|
skipDuplicates: z.ZodOptional<z.ZodBoolean>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
data: Prisma.StaffCreateManyInput | Prisma.StaffCreateManyInput[];
|
|
skipDuplicates?: boolean | undefined;
|
|
}, {
|
|
data: Prisma.StaffCreateManyInput | Prisma.StaffCreateManyInput[];
|
|
skipDuplicates?: boolean | undefined;
|
|
}>;
|
|
//# sourceMappingURL=createManyStaff.schema.d.ts.map
|