Type Alias VizRenderJSONObject

VizRenderJSONObject: {
    _draw_: {
        op: string;
        points: [number, number][];
    }[];
    _gvid: string;
    _hldraw_: {
        op: string;
        pt: [number, number];
    }[];
    bb: string;
    head: string;
    height: string;
    id: string;
    label: string;
    labelloc: string;
    lheight: string;
    lp: string;
    lwidth: string;
    name: string;
    nodes: VizRenderJSONObject[] | null;
    pos: string;
    tail: string;
    width: string;
}