Files
klz-cables.com/.pnpm-store/v10/files/3a/1b349074bf2cb1098bdf57b890a4edabef376e3ed63575df5dba5f4225c6ac0c7200c0628629ac00d7d02b5df0e76046f0a4270f748d601ff9db9bec62660e
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

12 lines
600 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 { LexicalEditor, LexicalNode } from 'lexical';
import { LexicalCommandLog } from './useLexicalCommandsLog';
export type CustomPrintNodeFn = (node: LexicalNode, obfuscateText?: boolean) => string | undefined;
export declare function generateContent(editor: LexicalEditor, commandsLog: LexicalCommandLog, exportDOM: boolean, customPrintNode?: CustomPrintNodeFn, obfuscateText?: boolean): string;