visual-graphql
Version:
A lightweight GraphQL schema visualization tool built with SolidJS
13 lines (11 loc) • 388 B
TypeScript
import { Component } from 'solid-js';
import { TypeGraph } from '../core/type-graph';
interface GraphViewportProps {
typeGraph: TypeGraph;
selectedTypeID: string | null;
selectedEdgeID: string | null;
onSelectNode: (id: string | null) => void;
onSelectEdge: (id: string | null) => void;
}
export declare const GraphViewport: Component<GraphViewportProps>;
export {};