Files
klz-cables.com/.pnpm-store/v10/files/b0/c0f479ae7571de452e973a53066abafe5dc269a3e74b9f766ddd1d1a3109f76d1bb69ad6fb96bef30619cee1660a086bf3ace7ede0d31a14e9cdb9f382d382
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

20 lines
513 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
*/
import type {LexicalEditor} from 'lexical';
// $FlowFixMe[cannot-resolve-module] - Not able to type this with a flow extension
import type {TRefFor} from 'CoreTypes.flow';
type Props = $ReadOnly<{
editorRef: TRefFor<LexicalEditor>,
}>;
declare export function EditorRefPlugin(props: Props): null;