UNPKG

@graphiql/react

Version:

[Changelog](https://github.com/graphql/graphiql/blob/main/packages/graphiql-react/CHANGELOG.md) | [API Docs](https://graphiql-test.netlify.app/typedoc/modules/graphiql_react.html) | [NPM](https://www.npmjs.com/package/@graphiql/react)

12 lines (11 loc) 299 B
/// <reference types="react" /> import { GraphQLType } from 'graphql'; import './type-link.css'; declare type TypeLinkProps = { /** * The type that should be linked to. */ type: GraphQLType; }; export declare function TypeLink(props: TypeLinkProps): JSX.Element | null; export {};