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

14 lines
376 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.
*
*/
import type { JSX } from 'react';
type Props = Readonly<{
onClear?: () => void;
}>;
export declare function ClearEditorPlugin({ onClear }: Props): JSX.Element | null;
export {};