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)

10 lines (9 loc) 488 B
/// <reference types="react" /> import './markdown.css'; declare type MarkdownContentProps = { children: string; onlyShowFirstChild?: boolean; type: 'description' | 'deprecation'; }; export declare const MarkdownContent: import("react").ForwardRefExoticComponent<Omit<MarkdownContentProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">, "ref"> & import("react").RefAttributes<HTMLDivElement>>; export {};