UNPKG

@dotbase/hl7-v2-message

Version:

Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.

11 lines (10 loc) 259 B
import Hl7Segment from "../../../model/Hl7Segment"; import IVC_Fields from '../fields/IVC_Fields'; /** * Invoice Segment */ export default class IVC_Segment extends Hl7Segment { get type(): string; get description(): string; fields: IVC_Fields; }