@redocly/graphql-docs
Version:
Redocly GraphQL docs
12 lines (11 loc) • 454 B
TypeScript
import React from 'react';
import type { GraphQLSchema } from 'graphql';
import type { PropsWithChildren } from 'react';
import type { GraphQLConfig } from '@redocly/config';
interface AppProvidersProps {
schema?: GraphQLSchema;
settings?: GraphQLConfig;
withCommonStyles?: boolean;
}
export declare function AppProviders({ schema, settings, children, withCommonStyles, }: PropsWithChildren<AppProvidersProps>): React.JSX.Element;
export {};