20 lines
862 B
TypeScript
20 lines
862 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const AppointmentProcedureSumAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureSumAggregateInputType>;
|
|
export declare const AppointmentProcedureSumAggregateInputObjectZodSchema: 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=AppointmentProcedureSumAggregateInput.schema.d.ts.map
|