UNPKG

@dotbase/hl7-v2-message

Version:

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

11 lines (10 loc) 257 B
import Hl7Segment from "../../../model/Hl7Segment"; import PV1_Fields from '../fields/PV1_Fields'; /** * Patient visit */ export default class PV1_Segment extends Hl7Segment { get type(): string; get description(): string; fields: PV1_Fields; }