UNPKG

@amida-tech/hl7-parser

Version:

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

8 lines (6 loc) 170 B
import { Element } from './element.model'; export class Field extends Element { constructor(name = null, value = null) { super(name, value); } }