/**
 * @name QuantityComparator
 * @description How the Quantity should be understood and represented.
 * @description < | <= | >= | >
 * @see <a href="https://hl7.org/fhir/R4/valueset-quantity-comparator.html">QuantityComparator</a>
 * @version R4
 * @author Roberto Araneda Espinoza
 */
export type QuantityComparatorType = '>=' | '<=' | '<' | '>';
