Files
klz-cables.com/.pnpm-store/v10/files/58/2cfd1a44f6f5293c4cb1cbb3c1705390fe76feb366c1f4efa1658b09c106e1113c0ab3f4492a780316721947d06407f06463b193d589ea8c3a93bea7a85dfe
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

35 lines
1.6 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 { EditorConfig, LexicalNode, LexicalUpdateJSON, NodeKey, SerializedTextNode, Spread } from 'lexical';
import { ElementNode, TextNode } from 'lexical';
type SerializedCodeHighlightNode = Spread<{
highlightType: string | null | undefined;
}, SerializedTextNode>;
/** @noInheritDoc */
export declare class CodeHighlightNode extends TextNode {
/** @internal */
__highlightType: string | null | undefined;
constructor(text?: string, highlightType?: string | null | undefined, key?: NodeKey);
static getType(): string;
static clone(node: CodeHighlightNode): CodeHighlightNode;
getHighlightType(): string | null | undefined;
setHighlightType(highlightType?: string | null | undefined): this;
canHaveFormat(): boolean;
createDOM(config: EditorConfig): HTMLElement;
updateDOM(prevNode: this, dom: HTMLElement, config: EditorConfig): boolean;
static importJSON(serializedNode: SerializedCodeHighlightNode): CodeHighlightNode;
updateFromJSON(serializedNode: LexicalUpdateJSON<SerializedCodeHighlightNode>): this;
exportJSON(): SerializedCodeHighlightNode;
setFormat(format: number): this;
isParentRequired(): true;
createParentElementNode(): ElementNode;
}
export declare function $createCodeHighlightNode(text?: string, highlightType?: string | null | undefined): CodeHighlightNode;
export declare function $isCodeHighlightNode(node: LexicalNode | CodeHighlightNode | null | undefined): node is CodeHighlightNode;
export {};