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)

13 lines (12 loc) 608 B
import { ReactNode } from 'react'; import './section.css'; declare type ExplorerSectionProps = { children: ReactNode; /** * The title of the section, which will also determine the icon rendered next * to the headline. */ title: 'Root Types' | 'Fields' | 'Deprecated Fields' | 'Type' | 'Arguments' | 'Deprecated Arguments' | 'Implements' | 'Implementations' | 'Possible Types' | 'Enum Values' | 'Deprecated Enum Values' | 'Directives' | 'All Schema Types'; }; export declare function ExplorerSection(props: ExplorerSectionProps): import("react/jsx-runtime").JSX.Element; export {};