File

src/app/model/domain/fol.graph.ts

Description

FOL structure in graph form. Serializable.

Index

Properties

Properties

description
description: string
Type : string
edges
edges: FOLEdge[]
Type : FOLEdge[]
lastEdit
lastEdit: number
Type : number
name
name: string
Type : string
nodes
nodes: FOLNode[]
Type : FOLNode[]
import { FOLEdge } from 'src/app/model/domain/fol.edge';
import { FOLNode } from 'src/app/model/domain/fol.node';

/**
 * FOL structure in graph form.
 * Serializable.
 */
export interface FOLGraph {
  name: string;
  description: string;
  lastEdit: number;
  nodes: FOLNode[];
  edges: FOLEdge[];
}

results matching ""

    No results matching ""