12 lines
270 B
TypeScript
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;
|