Files
klz-cables.com/.pnpm-store/v10/files/6c/f71225dc463b62484df1cf0c819efabad471d4603e5cf9b2a0d3cb5b73593ca769d6852c5d708e04755bd58f71629df6c4fe6338816043dcff5986469bd35a
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

15 lines
522 B
Plaintext

import type { ClientRect } from '../../../types';
import type { DraggableNode } from '../../../store';
import type { MeasuringFunction } from '../types';
interface Options {
activeNode: DraggableNode | null | undefined;
config: boolean | {
x: boolean;
y: boolean;
} | undefined;
initialRect: ClientRect | null;
measure: MeasuringFunction;
}
export declare function useLayoutShiftScrollCompensation({ activeNode, measure, initialRect, config, }: Options): void;
export {};