src/app/model/domain/fol.edge.ts
Edge between two nodes of a graph.
Properties |
functions |
functions:
|
Type : string[]
|
relations |
relations:
|
Type : string[]
|
source |
source:
|
Type : string
|
target |
target:
|
Type : string
|
export interface FOLEdge {
source: string;
target: string;
relations: string[];
functions: string[];
}