@redocly/graphql-docs
Version:
Redocly GraphQL docs
9 lines (8 loc) • 355 B
TypeScript
import type { ReactElement } from 'react';
import { TypeGroup } from '../../schema/index.js';
import { GraphQLItemProps } from '../types/graphql-item-props.js';
type GraphQLItemPropsWithType = GraphQLItemProps & {
type: TypeGroup;
};
export declare function GraphQlItem({ name, type, path }: GraphQLItemPropsWithType): ReactElement | null;
export {};