UNPKG

@amida-tech/hl7-parser

Version:

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

9 lines (8 loc) 230 B
import { Element } from './element.model'; export class Segment extends Element{ constructor(name = null, value = null) { super(name, value); this.children = new Array<Element>(); } children:Element[]; }