Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
16 lines
653 B
Plaintext
16 lines
653 B
Plaintext
import NextLinkImport from 'next/link.js';
|
|
import React from 'react';
|
|
declare const NextLink: React.ForwardRefExoticComponent<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, keyof NextLinkImport.LinkProps<any>> & NextLinkImport.LinkProps<any> & {
|
|
children?: React.ReactNode | undefined;
|
|
} & React.RefAttributes<HTMLAnchorElement>>;
|
|
type Props = {
|
|
/**
|
|
* Disable the e.preventDefault() call on click if you want to handle it yourself via onClick
|
|
*
|
|
* @default true
|
|
*/
|
|
preventDefault?: boolean;
|
|
} & Parameters<typeof NextLink>[0];
|
|
export declare const Link: React.FC<Props>;
|
|
export {};
|
|
//# sourceMappingURL=index.d.ts.map |