graphviz-builder/lib/Graphable.ts

6 lines
113 B
TypeScript
Raw Normal View History

2020-05-04 20:31:03 +02:00
import { Graph } from './Graph';
export interface Graphable {
2020-05-05 14:39:25 +02:00
to_graph(g: Graph, ...args: unknown[]): void;
2020-05-04 20:31:03 +02:00
}