27 lines
675 B
TypeScript
27 lines
675 B
TypeScript
import * as z from 'zod';
|
|
export declare const PdfGroupUpsertResultSchema: 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=PdfGroupUpsertResult.schema.d.ts.map
|