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>
12 lines
541 B
Text
12 lines
541 B
Text
import { LimitType } from './Limit.js';
|
|
import { Vector1DType } from './Vector1d.js';
|
|
export type TargetType = {
|
|
distance: number;
|
|
index: number;
|
|
};
|
|
export type ScrollTargetType = {
|
|
byIndex: (target: number, direction: number) => TargetType;
|
|
byDistance: (force: number, snap: boolean) => TargetType;
|
|
shortcut: (target: number, direction: number) => number;
|
|
};
|
|
export declare function ScrollTarget(loop: boolean, scrollSnaps: number[], contentSize: number, limit: LimitType, targetVector: Vector1DType): ScrollTargetType;
|