c211499
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
export function write(g: any): {
options: {
directed: any;
multigraph: any;
compound: any;
};
nodes: {
v: any;
}[];
edges: {
v: any;
w: any;
}[];
};
export function read(json: any): Graph;
import { Graph } from './graph.js';
|