Type alias UnprocessedEdgeList

UnprocessedEdgeList: {
    edge: Edge;
    sourceEntry: LayerEntry;
    sourceEntryIndex: number;
    targetEntry: LayerEntry;
    targetEntryIndex: number;
}[]

List of edges that were filtered by an edgeFilter and which were not used in the calculation of the layout.

Type declaration

  • edge: Edge
  • sourceEntry: LayerEntry
  • sourceEntryIndex: number
  • targetEntry: LayerEntry
  • targetEntryIndex: number