UNPKG

@redocly/graphql-docs

Version:

Redocly GraphQL docs

10 lines (9 loc) 304 B
import type { JSX } from 'react'; interface MarkdownProps { html?: string; rawMarkdown?: string | null; parser?: (rawMarkdown: string) => string; isField?: boolean; } export declare function Markdown({ html, rawMarkdown, parser, isField, }: MarkdownProps): JSX.Element | null; export {};