Model that can be converted to Node in DOT language.

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

Hierarchy (view full)

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

Generated using TypeDoc