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>
10 lines
448 B
Text
10 lines
448 B
Text
import { AxisType } from './Axis';
|
|
import { NodeRectType } from './NodeRects';
|
|
import { WindowType } from './utils';
|
|
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;
|