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>
18 lines
680 B
Text
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 {};
|