Files
klz-cables.com/.pnpm-store/v10/files/0b/4d3add71d652fd3cd9a74325268976016adea9676314be446f7db5b7a491cf4bcdf790f1e1b6d3436d707956a7538fb9c1fd789b4852affb1306f3f2d182ad
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

41 lines
925 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 {
EditorThemeClasses,
LexicalEditor,
LexicalNode,
EditorState,
LexicalNodeReplacement,
HTMLConfig,
} from 'lexical';
export type InitialEditorStateType =
| null
| string
| EditorState
| ((editor: LexicalEditor) => void);
export type InitialConfigType = $ReadOnly<{
editable?: boolean,
namespace: string,
nodes?: $ReadOnlyArray<Class<LexicalNode> | LexicalNodeReplacement>,
theme?: EditorThemeClasses,
editorState?: InitialEditorStateType,
onError: (error: Error, editor: LexicalEditor) => void,
html?: HTMLConfig,
}>;
type Props = {
initialConfig: InitialConfigType,
children: React.Node,
};
declare export function LexicalComposer(Props): React.MixedElement;