5 lines
169 B
TypeScript
5 lines
169 B
TypeScript
import * as z from 'zod';
|
|
|
|
export const PatientStatusSchema = z.enum(['ACTIVE', 'INACTIVE', 'UNKNOWN'])
|
|
|
|
export type PatientStatus = z.infer<typeof PatientStatusSchema>; |