Rocky_Mountain_Vending/.pnpm-store/v10/files/26/d047d984a0e7c3e111261c96a385bd45803519fd8a963e44e98ebbeafddb798dc942af8f19d1e122fef4ff8eee79969fa4d7cd8e0d43810b275bbf357cfb32
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
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;