Files
klz-cables.com/.pnpm-store/v10/files/3b/6a7523f884e6aa064d62e544514c3f1249bff2f12bfd6011a0849358f15fc0f7361c235d879949a62c1dcff81791efb357f8ec2f784b2f38c6a3b78be5a36d
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

22 lines
472 B
Plaintext

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict
*/
type LinkAttributes = {
rel?: null | string;
target?: null | string;
title?: null | string;
};
type Props = $ReadOnly<{
validateUrl?: (url: string) => boolean,
attributes?: LinkAttributes,
}>;
declare export function LinkPlugin(props: Props): null;