ts-graphviz
    Preparing search index...

    Model that can be converted to Node in DOT language.

    interface NodeModel {
        $$type: "Node";
        attributes: AttributesGroupModel<values>;
        comment?: string;
        id: string;
        port(port: string | Partial<Port>): ForwardRefNode;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    Properties

    $$type: "Node"

    The type of the DotObjectType.

    attributes: AttributesGroupModel<values>
    comment?: string

    Comments to include when outputting with toDot.

    id: string

    ID of the node

    Methods