11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import { z } from 'zod'
|
|
import type { PrescriptionItem } from '~/models/prescription-item'
|
|
|
|
const PrescriptionItemSchema = z.object({
|
|
})
|
|
|
|
type PrescriptionItemFormData = z.infer<typeof PrescriptionItemSchema> & PrescriptionItem
|
|
|
|
export { PrescriptionItemSchema }
|
|
export type { PrescriptionItemFormData }
|