@redocly/graphql-docs
Version:
Redocly GraphQL docs
9 lines (8 loc) • 323 B
TypeScript
import React from 'react';
import type { JSX } from 'react';
import type { SectionElement } from './Section';
export interface DocumentationProps {
header?: React.ReactNode;
children: SectionElement | SectionElement[];
}
export declare function Documentation({ header, children }: DocumentationProps): JSX.Element;