Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
611 B
Text
13 lines
611 B
Text
import { Vector1DType } from './Vector1d.js';
|
|
export type ScrollBodyType = {
|
|
direction: () => number;
|
|
duration: () => number;
|
|
velocity: () => number;
|
|
seek: () => ScrollBodyType;
|
|
settled: () => boolean;
|
|
useBaseFriction: () => ScrollBodyType;
|
|
useBaseDuration: () => ScrollBodyType;
|
|
useFriction: (n: number) => ScrollBodyType;
|
|
useDuration: (n: number) => ScrollBodyType;
|
|
};
|
|
export declare function ScrollBody(location: Vector1DType, offsetLocation: Vector1DType, previousLocation: Vector1DType, target: Vector1DType, baseDuration: number, baseFriction: number): ScrollBodyType;
|