fumadocs-core
Version:
The React.js library for building a documentation website
20 lines (19 loc) • 561 B
TypeScript
import * as react1 from "react";
import { AnchorHTMLAttributes } from "react";
//#region src/link.d.ts
interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
/**
* If the href is an external URL
*
* automatically determined by default
*/
external?: boolean;
/**
* Prefetch links, supported on Next.js
*/
prefetch?: boolean;
}
declare const Link: react1.ForwardRefExoticComponent<LinkProps & react1.RefAttributes<HTMLAnchorElement>>;
//#endregion
export { LinkProps, Link as default };
//# sourceMappingURL=link.d.ts.map