UNPKG

@graphiql/plugin-doc-explorer

Version:
12 lines (11 loc) 541 B
import { FC, ReactNode } from 'react'; 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 const ExplorerSection: FC<ExplorerSectionProps>; export {};