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

13 lines (12 loc) 581 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _propTypes = _interopRequireDefault(require("prop-types")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Enum for possible Result Interpretation values (also called `Clinical Severity` and `Normalcy`) */ var interpretationPropType = _propTypes.default.oneOf(['critical', 'critical-high', 'critical-low', 'positive', 'abnormal', 'high', 'low', 'normal']); var _default = exports.default = interpretationPropType;