Rocky_Mountain_Vending/.pnpm-store/v10/files/bb/91dde45128a6c19535c010d7bca1b898a84072bc865cdee77d02d4a32e138915b512ae10b7f9c927a25f4ede16a8599a1a535d45b73481d511f3607eed057a
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

9 lines
464 B
Text

import { AlignmentType } from './Alignment.js';
import { AxisType } from './Axis.js';
import { NodeRectType } from './NodeRects.js';
import { SlidesToScrollType } from './SlidesToScroll.js';
export type ScrollSnapsType = {
snaps: number[];
snapsAligned: number[];
};
export declare function ScrollSnaps(axis: AxisType, alignment: AlignmentType, containerRect: NodeRectType, slideRects: NodeRectType[], slidesToScroll: SlidesToScrollType): ScrollSnapsType;