Variable Constructors

Constructors: {
    ConstructGraphNodeEdgesList: ((nodes, edges) => Promise<Graph>);
}

Type declaration

  • ConstructGraphNodeEdgesList: ((nodes, edges) => Promise<Graph>)
      • (nodes, edges): Promise<Graph>
      • construct a graph based on an edge list and node list

        Parameters

        • nodes: any[]

          nodes as a list

        • edges: any[]

          edges as a list

        Returns Promise<Graph>

        A graph that was construct from the list of nodes and edges

Generated using TypeDoc