Files
DentalManagementMHAprilgg/packages/db/shared/schemas/results/PdfGroupUpdateResult.schema.d.ts
2026-04-04 22:13:55 -04:00

27 lines
690 B
TypeScript

import * as z from 'zod';
export declare const PdfGroupUpdateResultSchema: z.ZodNullable<z.ZodObject<{
id: z.ZodNumber;
title: z.ZodString;
titleKey: z.ZodUnknown;
createdAt: z.ZodDate;
patientId: z.ZodNumber;
patient: z.ZodUnknown;
pdfs: z.ZodArray<z.ZodUnknown, "many">;
}, "strip", z.ZodTypeAny, {
createdAt: Date;
id: number;
title: string;
pdfs: unknown[];
patientId: number;
titleKey?: unknown;
patient?: unknown;
}, {
createdAt: Date;
id: number;
title: string;
pdfs: unknown[];
patientId: number;
titleKey?: unknown;
patient?: unknown;
}>>;
//# sourceMappingURL=PdfGroupUpdateResult.schema.d.ts.map