graphviz-builder/lib/interfaces/GraphStreamJSON.ts

7 lines
150 B
TypeScript
Raw Normal View History

2020-05-06 20:24:37 +02:00
import { GraphStreamCommand } from '../enums/GraphStreamCommand';
export interface GraphStreamJSON {
type: GraphStreamCommand;
args: string[];
}