Rocky_Mountain_Vending/.pnpm-store/v10/files/d4/fff6ab84bad0cba3e4cde10f4111fb54fefad8fb8e3a2f3b26472b0f9c4db86a1a5cd3dcd7e3eb770b97aed7c8ce92ead7a1e0b337adc7a0b548652e6e47d3
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
260 B
Text

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