UNPKG

visual-graphql

Version:

A lightweight GraphQL schema visualization tool built with SolidJS

13 lines (11 loc) 382 B
import { Component } from 'solid-js'; import { TypeGraph } from '../core/type-graph'; interface DocExplorerProps { typeGraph: TypeGraph; selectedTypeID: string | null; selectedEdgeID: string | null; onSelectNode: (id: string | null) => void; onSelectEdge: (id: string | null) => void; } export declare const DocExplorer: Component<DocExplorerProps>; export {};