UNPKG

fhirtypes

Version:
10 lines (9 loc) 341 B
/** * @name DaysOfWeek * @description The days of the week. * @description mon | tue | wed | thu | fri | sat | sun * @see <a href="https://hl7.org/fhir/R4/valueset-days-of-week.html">DaysOfWeek</a> * @version R4 * @author Roberto Araneda Espinoza */ export type DaysOfWeekType = 'mon' | 'tue' | 'wed' | 'thu' | 'fri' | 'sat' | 'sun';