@redocly/graphql-docs
Version:
Redocly GraphQL docs
12 lines (11 loc) • 433 B
TypeScript
import type { JSX } from 'react';
import type { SchemaInput } from './schema';
import type { GraphQLConfig } from '@redocly/config';
import './polyfills';
interface RedoclyGraphQLReferenceDocsProps {
schema: SchemaInput;
settings?: GraphQLConfig;
withCommonStyles?: boolean;
}
export declare function RedoclyGraphQLDocs({ settings, withCommonStyles, ...props }: RedoclyGraphQLReferenceDocsProps): JSX.Element;
export {};