Rocky_Mountain_Vending/.pnpm-store/v10/files/ca/62c2d24ab0c6a7793f2f8b57a702a34a96a878d9aae5a282387eac423d6e450c913eb869e2f8b5849726f9f3772d3bc9c2da53df53761fd21e384c19c4a3d1
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
188 B
Text

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