Files
klz-cables.com/.pnpm-store/v10/files/f6/ab78e57dda1138fc21bf71ac5c76c9d33d37d6d28d02d57ae545766329b1f28fe64494223f03456ac3cf5f67aebb8b9176237e172f3aba27a6fd3230c9779c
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

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