@redocly/graphql-docs
Version:
Redocly GraphQL docs
13 lines (12 loc) • 429 B
TypeScript
import React from 'react';
import type { GraphQLArgument } from 'graphql';
import type { FieldViewProps } from './FieldView';
interface ArgumentViewProps {
argument: GraphQLArgument;
contrast?: boolean;
renderField?: (props: FieldViewProps) => React.ReactElement;
fieldExpandLevel?: number;
firstOfType?: boolean;
}
export declare const ArgumentView: React.NamedExoticComponent<ArgumentViewProps>;
export {};