Rocky_Mountain_Vending/.pnpm-store/v10/files/a0/f298b669cb1c5d433dbdc0f3da9af15ed9a0e3fe385c3d6c0068aaecdffcc4a7662a52e506bef16a42690b32cf87f8b08b6c50f628e75dd1c25e5698536968
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
207 B
Text

import { LimitType } from './Limit';
export type ScrollLimitType = {
limit: LimitType;
};
export declare function ScrollLimit(contentSize: number, scrollSnaps: number[], loop: boolean): ScrollLimitType;