UNPKG

@redocly/graphql-docs

Version:

Redocly GraphQL docs

8 lines (7 loc) 277 B
import type { PropsWithChildren, JSX } from 'react'; export interface LinkProps { to: string; className?: string; onClick?: () => void; } export declare function PaginationAwareLink({ to, className, children, onClick, }: PropsWithChildren<LinkProps>): JSX.Element;