Files
klz-cables.com/.pnpm-store/v10/files/8f/f8d034e825321c40831394c65324bf8e7760c0ba92dc6524c102a9ecb5141d5d3685ff3f5138e3feb3e898f057b6f41a199b0e527475609b76cbce86b1f9e1
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

22 lines
485 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.
*
* @flow strict
*/
import type {LexicalEditor} from 'lexical';
declare export function registerTabIndentation(
editor: LexicalEditor,
maxIndent?: number,
): () => void;
type Props = $ReadOnly<{
maxIndent?: number,
}>;
declare export function TabIndentationPlugin(props: Props): null;