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

33 lines
1.3 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 { NodeKey, NodeMap, TextNode } from 'lexical';
import type { Map as YMap } from 'yjs';
export declare class CollabTextNode {
_map: YMap<unknown>;
_key: NodeKey;
_parent: CollabElementNode;
_text: string;
_type: string;
_normalized: boolean;
constructor(map: YMap<unknown>, text: string, parent: CollabElementNode, type: string);
getPrevNode(nodeMap: null | NodeMap): null | TextNode;
getNode(): null | TextNode;
getSharedType(): YMap<unknown>;
getType(): string;
getKey(): NodeKey;
getSize(): number;
getOffset(): number;
spliceText(index: number, delCount: number, newText: string): void;
syncPropertiesAndTextFromLexical(binding: Binding, nextLexicalNode: TextNode, prevNodeMap: null | NodeMap): void;
syncPropertiesAndTextFromYjs(binding: Binding, keysChanged: null | Set<string>): void;
destroy(binding: Binding): void;
}
export declare function $createCollabTextNode(map: YMap<unknown>, text: string, parent: CollabElementNode, type: string): CollabTextNode;