Rocky_Mountain_Vending/.pnpm-store/v10/files/a0/708eeb6483187b132e39786bc17286e4d78a92cf23279348131fde7d67f0ebd1f6d77ab4a05c4b7e3e1852fbe1c26f9a19b7ababc63b63610f3a178dc17fa4
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

7 lines
497 B
Text

import { AxisType } from './Axis.js';
import { NodeRectType } from './NodeRects.js';
export type SlidesToScrollOptionType = 'auto' | number;
export type SlidesToScrollType = {
groupSlides: <Type>(array: Type[]) => Type[][];
};
export declare function SlidesToScroll(axis: AxisType, viewSize: number, slidesToScroll: SlidesToScrollOptionType, loop: boolean, containerRect: NodeRectType, slideRects: NodeRectType[], startGap: number, endGap: number, pixelTolerance: number): SlidesToScrollType;