fhirtypes
Version:
17 lines (16 loc) • 532 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StrandTypeEnum = void 0;
/**
* @name StrandType
* @description Type for strand.
* @description Watson | Crick
* @see <a href="https://hl7.org/fhir/R4/valueset-strand-type.html">StrandType</a>
* @version R4
* @author Claudia Alarcón Lazo
*/
var StrandTypeEnum;
(function (StrandTypeEnum) {
StrandTypeEnum["WATSON"] = "watson";
StrandTypeEnum["CRICK"] = "crick";
})(StrandTypeEnum || (exports.StrandTypeEnum = StrandTypeEnum = {}));