Rocky_Mountain_Vending/.pnpm-store/v10/files/9d/33dfb6c61fb490ee26756958e81f933a471c11a87a83989f4ce014d8850e4457e11172b0e6060d336d5d51185aaef1a06d54897343e605949f49b67907a746
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
680 B
Text

import { AxisType } from './Axis';
import { Vector1DType } from './Vector1d';
import { TranslateType } from './Translate';
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 {};