GraphStream

This commit is contained in:
2020-05-06 20:24:37 +02:00
parent acf8004497
commit 8d6d91e562
21 changed files with 357 additions and 81 deletions

View File

@ -0,0 +1,6 @@
import { GraphStreamCommand } from '../enums/GraphStreamCommand';
export interface GraphStreamJSON {
type: GraphStreamCommand;
args: string[];
}

View File

@ -0,0 +1,5 @@
import { Graph } from '../classes/Graph';
export interface Graphable {
to_graph(g: Graph, ...args: unknown[]): unknown;
}