UNPKG

@dotbase/hl7-v2-message

Version:

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

8 lines (7 loc) 280 B
import Hl7ISegment from "../types/Hl7ISegment"; import Hl7IFields from "../types/Hl7IFields"; export default abstract class Hl7Segment implements Hl7ISegment { abstract get type(): string; abstract get description(): string | undefined; abstract fields: Hl7IFields; }