Interface: RawRepetition
A single repetition inside a field: HL7 fields may repeat using the
repetition separator (~ by default). Each repetition is an ordered list
of components.
Example
import type { RawRepetition } from "@cosyte/hl7";
const rep: RawRepetition = { components: [{ subcomponents: ["Smith"] }] };
Properties
components
readonlycomponents: readonlyRawComponent[]