UNPKG

@redocly/graphql-docs

Version:

Redocly GraphQL docs

12 lines (11 loc) 435 B
import type { GraphQLField } from 'graphql'; export type FieldExampleGenerator = (props: FieldExampleGeneratorProps) => string; export type FieldExampleGeneratorProps = { field: GraphQLField<any, any>; multilineArguments: boolean; indentation: number; translate: (key: string, defaultMessage?: string) => string; maxLevel: number; level?: number; }; export declare const getFieldExample: FieldExampleGenerator;