Rocky_Mountain_Vending/.pnpm-store/v10/files/cb/b5dfcc7a790919fa66c2d5fe0d76863bd6e96b824d4cc9d29b8079785452a59367e657ea35b5a69e63f6ed330283b639824bfef400b6cf634e2d2a07f1b28c
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

13 lines
608 B
Text

import { Vector1DType } from './Vector1d';
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;