20 lines
817 B
TypeScript
20 lines
817 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const AppointmentAvgAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentAvgAggregateInputType>;
|
|
export declare const AppointmentAvgAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
patientId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
userId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
staffId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: true | undefined;
|
|
userId?: true | undefined;
|
|
patientId?: true | undefined;
|
|
staffId?: true | undefined;
|
|
}, {
|
|
id?: true | undefined;
|
|
userId?: true | undefined;
|
|
patientId?: true | undefined;
|
|
staffId?: true | undefined;
|
|
}>;
|
|
//# sourceMappingURL=AppointmentAvgAggregateInput.schema.d.ts.map
|