UNPKG

burdy

Version:

Open Source Headless Platform

9 lines (8 loc) 387 B
import { LinkProps } from 'react-router-dom'; import { ILinkProps, Link as MSLink } from '@fluentui/react'; import * as React from 'react'; declare type ReachProps = React.PropsWithoutRef<LinkProps<any>>; declare type Props = ReachProps & ILinkProps; declare const RelativeReachLink: React.FC<ReachProps>; declare const Link: React.FC<Props>; export { Link, RelativeReachLink, MSLink };