Rocky_Mountain_Vending/.pnpm-store/v10/files/94/b188fde5bf5901e23ef7759268dcffb4abf87cc1245d269f155e4989a9074a6a87aa16b78f7dfe5c2f5e4037c444686fc57e1a6ef864b6a6ffbb5868feb8a4
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

7 lines
263 B
Text

import { AxisType } from './Axis.js';
export type TranslateType = {
clear: () => void;
to: (target: number) => void;
toggleActive: (active: boolean) => void;
};
export declare function Translate(axis: AxisType, container: HTMLElement): TranslateType;