UNPKG

@manhydra/hl7-parser

Version:

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

9 lines (8 loc) 227 B
import { FieldDefinition } from './fieldDefinition'; export declare class Element { name: string; value: string; constructor(name: string, value: string); definition: FieldDefinition; children: Element[]; }