graphviz-builder/lib/Graphable.ts
2020-05-04 20:31:03 +02:00

6 lines
93 B
TypeScript

import { Graph } from './Graph';
export interface Graphable {
to_graph(g: Graph): void;
}