Files
klz-cables.com/.pnpm-store/v10/files/b8/676665702113618da2b0a22152330bb65ca61c673116495e1df2affedb83519dfe7f89a5e7d08044e9377558c26d5f0f752a86c44ea8e02392fcb8139a7f3b
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

7 lines
334 B
Plaintext

import * as React from 'react';
type HtmlProps = Readonly<React.ComponentPropsWithoutRef<"html">>;
declare const Html: React.ForwardRefExoticComponent<Readonly<Omit<React.DetailedHTMLProps<React.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, "ref">> & React.RefAttributes<HTMLHtmlElement>>;
export { Html, type HtmlProps };