Rocky_Mountain_Vending/.pnpm-store/v10/files/49/57cc9ba9485d403032eee90a1c26261f47ff8d5d9c5ea9349c84c3b47dc7b4488f9d176857c2a63ddcf4d88eca66d7f2614a728a5ecfd2d8d0179613ba97e8
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

5 lines
185 B
Text

import { LimitType } from './Limit';
export type ScrollProgressType = {
get: (n: number) => number;
};
export declare function ScrollProgress(limit: LimitType): ScrollProgressType;