The node interface.

interface INode {
    getId(): string;
    getRemoteConnections(): Set<string>;
}

Hierarchy (view full)

Methods

  • Get the ID of the node.

    Returns string

    The ID of the node.

  • Get the remote connections.

    Returns Set<string>

    The remote connections.

Generated using TypeDoc