UNPKG

@amida-tech/hl7-parser

Version:

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

7 lines (6 loc) 176 B
import { Segment } from './segment.model'; export class RepeatingField extends Segment { constructor(name = null, value = null) { super(name, value); } }