14 lines
1.0 KiB
TypeScript
14 lines
1.0 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const UserCreateOrConnectWithoutStaffInputObjectSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutStaffInput>;
|
|
export declare const UserCreateOrConnectWithoutStaffInputObjectZodSchema: z.ZodObject<{
|
|
where: z.ZodLazy<z.ZodType<Prisma.UserWhereUniqueInput, z.ZodTypeDef, Prisma.UserWhereUniqueInput>>;
|
|
create: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.UserCreateWithoutStaffInput, z.ZodTypeDef, Prisma.UserCreateWithoutStaffInput>>, z.ZodLazy<z.ZodType<Prisma.UserUncheckedCreateWithoutStaffInput, z.ZodTypeDef, Prisma.UserUncheckedCreateWithoutStaffInput>>]>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
create: Prisma.UserCreateWithoutStaffInput | Prisma.UserUncheckedCreateWithoutStaffInput;
|
|
where: Prisma.UserWhereUniqueInput;
|
|
}, {
|
|
create: Prisma.UserCreateWithoutStaffInput | Prisma.UserUncheckedCreateWithoutStaffInput;
|
|
where: Prisma.UserWhereUniqueInput;
|
|
}>;
|
|
//# sourceMappingURL=UserCreateOrConnectWithoutStaffInput.schema.d.ts.map
|