/** * @name UnitsOfTime * @description A unit of time (units from UCUM). * @description s | min | h | d | wk | mo | a * @see UnitsOfTime * @version R4 * @author Roberto Araneda Espinoza */ export type UnitsOfTimeType = 's' | 'min' | 'h' | 'd' | 'wk' | 'mo' | 'a';