UNPKG

@amida-tech/hl7-parser

Version:

Typescript library to parse hl7 message into a typescript/javascript object and back

12 lines (11 loc) 295 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Element = void 0; var Element = /** @class */ (function () { function Element(name, value) { this.name = name; this.value = value; } return Element; }()); exports.Element = Element;