Rocky_Mountain_Vending/.pnpm-store/v10/files/6d/42fe06307ad7a60522369884d948a92aaa90c0838afd724e881bc26d97ca5609df8a57194a5593d2be3d1e12c0d8624dd29545b72aa94889376293540001b3
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

10 lines
457 B
Text

import { AxisType } from './Axis.js';
import { NodeRectType } from './NodeRects.js';
import { WindowType } from './utils.js';
export type SlideSizesType = {
slideSizes: number[];
slideSizesWithGaps: number[];
startGap: number;
endGap: number;
};
export declare function SlideSizes(axis: AxisType, containerRect: NodeRectType, slideRects: NodeRectType[], slides: HTMLElement[], readEdgeGap: boolean, ownerWindow: WindowType): SlideSizesType;