UNPKG

@redocly/graphql-docs

Version:

Redocly GraphQL docs

12 lines (11 loc) 411 B
import React from 'react'; import type { GraphQLOutputType, GraphQLInputType } from 'graphql'; import type { FieldView } from '../../definition/components/FieldView'; interface TypeProps { type: GraphQLOutputType | GraphQLInputType; contrast?: boolean; renderField?: typeof FieldView; fieldExpandLevel?: number; } export declare const TypeView: React.NamedExoticComponent<TypeProps>; export {};