Files
klz-cables.com/.pnpm-store/v10/files/5a/ce0119fc4e02d42298c16e567a9a62cde398691e129ecbe85e055287c3a03723e1b1bc908f7b1ca99ac88f133e58a6930682e3a3d390e74ab88f49605e09fa
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

16 lines
434 B
Plaintext

/// <reference types="react" />
export interface IScrollInfoContext {
x: number;
y: number;
xDifference: number;
yDifference: number;
xDirection?: 'left' | 'right';
yDirection?: 'up' | 'down';
xPercentage: number;
yPercentage: number;
totalPercentage: number;
eventsFired: number;
hasScrolled: boolean;
}
export declare const ScrollInfoContext: import("react").Context<IScrollInfoContext>;