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

17 lines
669 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 } from 'lexical';
import { LexicalCommand } from 'lexical';
export type LexicalCommandLog = ReadonlyArray<{
index: number;
} & LexicalCommand<unknown> & {
payload: unknown;
}>;
export declare function registerLexicalCommandLogger(editor: LexicalEditor, setLoggedCommands: (v: (oldValue: LexicalCommandLog) => LexicalCommandLog) => void): () => void;
export declare function useLexicalCommandsLog(editor: LexicalEditor): LexicalCommandLog;