Files
klz-cables.com/.pnpm-store/v10/files/74/3804940a8f36c6470ca9a2bd00bced8a4c90bc742a9bce3e858ba70d4c04112c6ddaf433ddeb58a666d3c16191fbdc5c9f825f55e354793d62e4b92214fa87
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

26 lines
611 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,
LexicalNode,
EditorState,
EditorThemeClasses,
} from 'lexical';
declare export function createHeadlessEditor(editorConfig?: {
editorState?: EditorState,
namespace?: string,
nodes?: $ReadOnlyArray<Class<LexicalNode>>,
onError?: (error: Error) => void,
parentEditor?: LexicalEditor,
editable?: boolean,
theme?: EditorThemeClasses,
}): LexicalEditor;