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