@redocly/graphql-docs
Version:
Redocly GraphQL docs
12 lines (11 loc) • 344 B
TypeScript
import React from 'react';
import type { FieldView } from './FieldView';
import type { Field } from '../../schema';
interface FieldListProps {
fields: Field[];
contrast?: boolean;
renderField?: typeof FieldView;
fieldExpandLevel?: number;
}
export declare const FieldList: React.NamedExoticComponent<FieldListProps>;
export {};