UNPKG

@redocly/graphql-docs

Version:

Redocly GraphQL docs

9 lines (8 loc) 353 B
import React from 'react'; import type { GraphQLField } from 'graphql'; import type { OperationType } from '../operation'; export interface OperationExampleProps { operationType: OperationType; operation: GraphQLField<any, any>; } export declare function OperationExample({ operationType, operation }: OperationExampleProps): React.JSX.Element;