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)

9 lines (8 loc) 402 B
import { ComponentPropsWithoutRef } from 'react'; interface MarkdownContentProps extends Omit<ComponentPropsWithoutRef<'div'>, 'children'> { children: string; onlyShowFirstChild?: boolean; type: 'description' | 'deprecation'; } export declare const MarkdownContent: import('react').ForwardRefExoticComponent<MarkdownContentProps & import('react').RefAttributes<HTMLDivElement>>; export {};