20 lines
953 B
TypeScript
20 lines
953 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const AppointmentSumOrderByAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentSumOrderByAggregateInput>;
|
|
export declare const AppointmentSumOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
patientId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
userId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
staffId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: "asc" | "desc" | undefined;
|
|
userId?: "asc" | "desc" | undefined;
|
|
patientId?: "asc" | "desc" | undefined;
|
|
staffId?: "asc" | "desc" | undefined;
|
|
}, {
|
|
id?: "asc" | "desc" | undefined;
|
|
userId?: "asc" | "desc" | undefined;
|
|
patientId?: "asc" | "desc" | undefined;
|
|
staffId?: "asc" | "desc" | undefined;
|
|
}>;
|
|
//# sourceMappingURL=AppointmentSumOrderByAggregateInput.schema.d.ts.map
|