src/app/model/domain/fol.node.ts
Node of a graph.
Properties |
constants |
constants:
|
Type : string[]
|
name |
name:
|
Type : string
|
relations |
relations:
|
Type : string[]
|
export interface FOLNode {
name: string;
relations: string[];
constants: string[];
}