Files
klz-cables.com/.pnpm-store/v10/files/1e/f4215292b870f0ce0a3c10e917b4826b685a5f4ba3a98cee57db9bd5abfac91067f815600f5f6a6a9463c73b22ac21938fe5baeb5d343cedb7964d1cf61809
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

30 lines
1.2 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 { Binding } from '.';
import type { CollabElementNode } from './CollabElementNode';
import type { DecoratorNode, NodeKey, NodeMap } from 'lexical';
import type { XmlElement } from 'yjs';
export declare class CollabDecoratorNode {
_xmlElem: XmlElement;
_key: NodeKey;
_parent: CollabElementNode;
_type: string;
constructor(xmlElem: XmlElement, parent: CollabElementNode, type: string);
getPrevNode(nodeMap: null | NodeMap): null | DecoratorNode<unknown>;
getNode(): null | DecoratorNode<unknown>;
getSharedType(): XmlElement;
getType(): string;
getKey(): NodeKey;
getSize(): number;
getOffset(): number;
syncPropertiesFromLexical(binding: Binding, nextLexicalNode: DecoratorNode<unknown>, prevNodeMap: null | NodeMap): void;
syncPropertiesFromYjs(binding: Binding, keysChanged: null | Set<string>): void;
destroy(binding: Binding): void;
}
export declare function $createCollabDecoratorNode(xmlElem: XmlElement, parent: CollabElementNode, type: string): CollabDecoratorNode;