Files
DentalManagementMH05/packages/db/shared/schemas/variants/result/PdfGroup.result.d.ts

28 lines
995 B
TypeScript

import * as z from 'zod';
export declare const PdfGroupResultSchema: z.ZodObject<{
id: z.ZodNumber;
title: z.ZodString;
titleKey: z.ZodEnum<["INSURANCE_CLAIM", "INSURANCE_CLAIM_PREAUTH", "ELIGIBILITY_STATUS", "CLAIM_STATUS", "OTHER"]>;
createdAt: z.ZodDate;
patientId: z.ZodNumber;
patient: z.ZodUnknown;
pdfs: z.ZodArray<z.ZodUnknown, "many">;
}, "strict", z.ZodTypeAny, {
id: number;
title: string;
titleKey: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER";
createdAt: Date;
pdfs: unknown[];
patientId: number;
patient?: unknown;
}, {
id: number;
title: string;
titleKey: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER";
createdAt: Date;
pdfs: unknown[];
patientId: number;
patient?: unknown;
}>;
export type PdfGroupResultType = z.infer<typeof PdfGroupResultSchema>;
//# sourceMappingURL=PdfGroup.result.d.ts.map