@argdown/core
    Preparing search index...

    Interface IMapEdge

    An edge in an argument map derived from an [[IRelation]] or an [[IEquivalenceClass]].

    interface IMapEdge {
        color?: string;
        from: IMapNode;
        fromEquivalenceClass?: IEquivalenceClass;
        id: string;
        relationType: RelationType;
        to: IMapNode;
        toEquivalenceClass?: IEquivalenceClass;
        type: MAP_EDGE;
    }

    Hierarchy (View Summary)

    Index

    Properties

    color?: string
    from: IMapNode

    Source node of this edge

    fromEquivalenceClass?: IEquivalenceClass

    Stores the equivalence class if the edge is based on a relation that has one as a source or if this edge is derived from an equivalence class itself.

    id: string
    relationType: RelationType

    Target node of this edge

    toEquivalenceClass?: IEquivalenceClass

    Stores the equivalence class if the edge is based on a relation that has one as a target or if this edge is derived from an equivalence class itself.

    type: MAP_EDGE