Files
DentalManagementElogin/packages/db/shared/schemas/objects/UserAvgAggregateInput.schema.ts
2025-05-08 21:27:29 +05:30

12 lines
270 B
TypeScript

import { z } from 'zod';
import type { Prisma } from '../../../generated/prisma';
const Schema: z.ZodType<Prisma.UserAvgAggregateInputType> = z
.object({
id: z.literal(true).optional(),
})
.strict();
export const UserAvgAggregateInputObjectSchema = Schema;