@redocly/graphql-docs
Version:
Redocly GraphQL docs
10 lines (9 loc) • 319 B
TypeScript
import type { TFunction } from '@redocly/theme';
import type { ReactElement } from 'react';
import type { GraphQLInfo } from '../../types/index.js';
type OverviewProps = {
info: GraphQLInfo;
translate: TFunction;
};
export declare function Overview({ info, translate }: OverviewProps): ReactElement;
export {};