7 lines
150 B
TypeScript
7 lines
150 B
TypeScript
|
import { GraphStreamCommand } from '../enums/GraphStreamCommand';
|
||
|
|
||
|
export interface GraphStreamJSON {
|
||
|
type: GraphStreamCommand;
|
||
|
args: string[];
|
||
|
}
|