@redocly/graphql-docs
Version:
Redocly GraphQL docs
11 lines (10 loc) • 452 B
TypeScript
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>): import("react/jsx-runtime.js").JSX.Element;
export {};