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
18 lines (15 loc) • 348 B
JavaScript
import PropTypes from 'prop-types';
/**
* Enum for possible Result Interpretation values (also called `Clinical Severity` and `Normalcy`)
*/
const interpretationPropType = PropTypes.oneOf([
'critical',
'critical-high',
'critical-low',
'positive',
'abnormal',
'high',
'low',
'normal',
]);
export default interpretationPropType;