Rocky_Mountain_Vending/.pnpm-store/v10/files/4a/c7ff991e473862bcd33b43ddb431234c858cf3ae352cb6a2f7f4979922eb7082a5b818f4012949f52a2007764f893b012d8c6e8f7e9a8e8f8d77dbe97dcda8
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

18 lines
689 B
Text

import { AxisType } from './Axis.js';
import { Vector1DType } from './Vector1d.js';
import { TranslateType } from './Translate.js';
type LoopPointType = {
loopPoint: number;
index: number;
translate: TranslateType;
slideLocation: Vector1DType;
target: () => number;
};
export type SlideLooperType = {
canLoop: () => boolean;
clear: () => void;
loop: () => void;
loopPoints: LoopPointType[];
};
export declare function SlideLooper(axis: AxisType, viewSize: number, contentSize: number, slideSizes: number[], slideSizesWithGaps: number[], snaps: number[], scrollSnaps: number[], location: Vector1DType, slides: HTMLElement[]): SlideLooperType;
export {};