import { z } from 'zod' import type { Prescription } from '~/models/prescription' const PrescriptionSchema = z.object({ 'encounter-id': z.number().nullable().optional(), }) type PrescriptionFormData = z.infer & Prescription export { PrescriptionSchema } export type { PrescriptionFormData }