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

17 lines
618 B
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 { LexicalEditor } from 'lexical';
import { OverflowNode } from '@lexical/overflow';
type OptionalProps = {
remainingCharacters?: (characters: number) => void;
strlen?: (input: string) => number;
};
export declare function useCharacterLimit(editor: LexicalEditor, maxCharacters: number, optional?: OptionalProps): void;
export declare function $mergePrevious(overflowNode: OverflowNode): void;
export {};