fhirtypes
Version:
15 lines (14 loc) • 441 B
TypeScript
/**
* @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 declare enum QuantityComparatorEnum {
LESS_THAN = "<",
LESS_OR_EQUAL_TO = "<=",
GREATER_OR_EQUAL_TO = ">=",
GREATER_THAN = ">"
}