@redocly/graphql-docs
Version:
Redocly GraphQL docs
8 lines (7 loc) • 318 B
TypeScript
import type { JSX, PropsWithChildren } from 'react';
import type { ReferenceDocsLocation } from '../../settings';
export interface LinkProps {
to: ReferenceDocsLocation;
className?: string;
}
export declare function PaginationAwareLink({ to, className, children, }: PropsWithChildren<LinkProps>): JSX.Element;