Files
klz-cables.com/.pnpm-store/v10/files/91/9c49fe17ec6bc6466a7b587ee4ff4ecd3e93e6853f14b20dfc18fb97f4c64599a39fc6332336b7a830abc573a58384485414bc91d8cd2bfacc19faf01fac1a
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

24 lines
1.0 KiB
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 { LexicalCommandLog } from './useLexicalCommandsLog';
import type { EditorSetOptions, EditorState } from 'lexical';
import * as React from 'react';
export declare const TreeView: React.ForwardRefExoticComponent<{
editorState: EditorState;
treeTypeButtonClassName?: string | undefined;
timeTravelButtonClassName?: string | undefined;
timeTravelPanelButtonClassName?: string | undefined;
timeTravelPanelClassName?: string | undefined;
timeTravelPanelSliderClassName?: string | undefined;
viewClassName?: string | undefined;
generateContent: (exportDOM: boolean) => Promise<string>;
setEditorState: (state: EditorState, options?: EditorSetOptions) => void;
setEditorReadOnly: (isReadonly: boolean) => void;
commandsLog?: LexicalCommandLog | undefined;
} & React.RefAttributes<HTMLPreElement>>;