Severian's picture
Upload 7464 files
c211499
raw
history blame contribute delete
261 Bytes
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';