UNPKG

health-level-seven-parser

Version:

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

24 lines (23 loc) 1.03 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); Object.defineProperty(exports, "__esModule", { value: true }); var segment_model_1 = require("./segment.model"); var RepeatingField = /** @class */ (function (_super) { __extends(RepeatingField, _super); function RepeatingField(name, value) { if (name === void 0) { name = null; } if (value === void 0) { value = null; } return _super.call(this, name, value) || this; } return RepeatingField; }(segment_model_1.Segment)); exports.RepeatingField = RepeatingField;