ts-graphviz
    Preparing search index...

    Interface EdgeModel

    Model that can be converted to Edge in DOT language.

    interface EdgeModel {
        $$type: "Edge";
        attributes: AttributesGroupModel<values>;
        comment?: string;
        targets: EdgeTargetTuple;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    $$type: "Edge"

    The type of the DotObjectType.

    attributes: AttributesGroupModel<values>
    comment?: string

    Comments to include when outputting with toDot.