@redocly/graphql-docs
Version:
Redocly GraphQL docs
12 lines (11 loc) • 392 B
TypeScript
import React from 'react';
import type { GraphQLArgument } from 'graphql';
import type { FieldView } from '../../definition/components/FieldView';
interface ArgumentsProps {
args: ReadonlyArray<GraphQLArgument>;
renderField?: typeof FieldView;
fieldExpandLevel?: number;
title?: string;
}
export declare const Arguments: React.NamedExoticComponent<ArgumentsProps>;
export {};