UNPKG

terra-clinical-result

Version:

The Terra Clinical Result package is a collection of standardized views for presenting clinical results documented to a Patient's Medical Chart, such as Vital Signs, Laboratory Results, and Discretely Documented Values

16 lines (13 loc) 460 B
import PropTypes from 'prop-types'; const valueQuantityPropType = PropTypes.shape({ /** * Value for a single Observation Result. * can be either single string or array of string values for multi-alpha responses */ value: PropTypes.oneOfType([PropTypes.string, PropTypes.arrayOf(PropTypes.string)]), /** * Unit of Measure representation for an Observation Result. */ unit: PropTypes.string, }); export default valueQuantityPropType;