@redocly/graphql-docs
Version:
Redocly GraphQL docs
9 lines (8 loc) • 375 B
TypeScript
import React from 'react';
import type { GraphQLField } from 'graphql';
import type { OperationType } from '../operation';
export interface OperationRequestExampleProps {
operation: GraphQLField<any, any>;
operationType: OperationType;
}
export declare function OperationRequestExample({ operation, operationType, }: OperationRequestExampleProps): React.JSX.Element;