graphviz-builder/lib/interfaces/GraphStreamJSON.ts
2020-05-06 20:24:37 +02:00

7 lines
150 B
TypeScript

import { GraphStreamCommand } from '../enums/GraphStreamCommand';
export interface GraphStreamJSON {
type: GraphStreamCommand;
args: string[];
}