UNPKG

@amida-tech/hl7-parser

Version:

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

11 lines (10 loc) 222 B
import { FieldDefinition } from './fieldDefinition'; export class Element { constructor( public name:string, public value:string ) { } definition: FieldDefinition; children:Element[]; }