tosch-hl7
    Preparing search index...

    Interface HL7ComponentAccess

    Represents a component with access to subcomponents (allows writing).

    interface HL7ComponentAccess {
        getSubcomponent(index: number): string;
        getSubcomponents(): string[];
        toString(): string;
        valueOf(): string;
        [index: number]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [index: number]: any

      Access subcomponents by index. May return null if not present.

    Index

    Methods

    • Retrieves a specific subcomponent by index.

      Parameters

      • index: number

      Returns string

    • Retrieves all subcomponents as strings.

      Returns string[]