patientSize.ts 152 B

1234567
  1. export const patientSizes = {
  2. small: 'Small',
  3. medium: 'Medium',
  4. large: 'Large',
  5. } as const;
  6. export type PatientSize = keyof typeof patientSizes;