visual-graphql
Version:
A lightweight GraphQL schema visualization tool built with SolidJS
16 lines (14 loc) • 347 B
TypeScript
import { Component } from 'solid-js';
interface Field {
name: string;
type: string;
description?: string;
isDeprecated?: boolean;
deprecationReason?: string;
}
interface TypeTableProps {
fields: Field[];
onSelectType: (typeName: string) => void;
}
export declare const TypeTable: Component<TypeTableProps>;
export {};