5 lines
195 B
TypeScript
5 lines
195 B
TypeScript
import * as z from 'zod';
|
|
|
|
export const MissingTeethStatusSchema = z.enum(['No_missing', 'endentulous', 'Yes_missing'])
|
|
|
|
export type MissingTeethStatus = z.infer<typeof MissingTeethStatusSchema>; |