UNPKG

visual-graphql

Version:

A lightweight GraphQL schema visualization tool built with SolidJS

13 lines (11 loc) 249 B
import { TypeGraph } from '../core/type-graph'; declare global { interface Window { Viz?: any; d3?: any; } } export declare function renderGraph(typeGraph: TypeGraph): Promise<{ svg: SVGSVGElement; panZoom: any; }>;