@micham/iso8583
    Preparing search index...

    Type Alias MessageDefinition<FD>

    A MessageDefinition represents the definition of a ISO message, consisting of an MTI field (to handle the MTI) and a set of fields defined by a FieldDefinition.

    type MessageDefinition<FD extends FieldDefinition> = {
        fields: FD;
        mtiField: Field<number>;
    }

    Type Parameters

    Index

    Properties

    Properties

    fields: FD
    mtiField: Field<number>