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
16 lines
434 B
Plaintext
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>;
|