Files
klz-cables.com/.pnpm-store/v10/files/b0/68b44b0433b3d2098548db4cb7934b390795817205abca444cba6b51e290ac2cda3d32d6370fec2ad34152fb45fb303e9fc291d9091eb445c0f4d355b1fa81
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

31 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 { EditorConfig, LexicalNode, SerializedTextNode } from 'lexical';
import { TextNode } from 'lexical';
/** @noInheritDoc */
export declare class HashtagNode extends TextNode {
static getType(): string;
static clone(node: HashtagNode): HashtagNode;
createDOM(config: EditorConfig): HTMLElement;
static importJSON(serializedNode: SerializedTextNode): HashtagNode;
canInsertTextBefore(): boolean;
isTextEntity(): true;
}
/**
* Generates a HashtagNode, which is a string following the format of a # followed by some text, eg. #lexical.
* @param text - The text used inside the HashtagNode.
* @returns - The HashtagNode with the embedded text.
*/
export declare function $createHashtagNode(text?: string): HashtagNode;
/**
* Determines if node is a HashtagNode.
* @param node - The node to be checked.
* @returns true if node is a HashtagNode, false otherwise.
*/
export declare function $isHashtagNode(node: LexicalNode | null | undefined): node is HashtagNode;