20 lines
862 B
TypeScript
20 lines
862 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const AppointmentProcedureAvgAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureAvgAggregateInputType>;
|
|
export declare const AppointmentProcedureAvgAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
appointmentId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
patientId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
fee: z.ZodOptional<z.ZodLiteral<true>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: true | undefined;
|
|
patientId?: true | undefined;
|
|
fee?: true | undefined;
|
|
appointmentId?: true | undefined;
|
|
}, {
|
|
id?: true | undefined;
|
|
patientId?: true | undefined;
|
|
fee?: true | undefined;
|
|
appointmentId?: true | undefined;
|
|
}>;
|
|
//# sourceMappingURL=AppointmentProcedureAvgAggregateInput.schema.d.ts.map
|