Rocky_Mountain_Vending/.pnpm-store/v10/files/3a/c29dc5afdad9bfbe23659771ff8de3122eadc20a5d5f95c7d4a1aabf81367e08f20c5a3bac41f255c8318a6a5f91d541ec841f1dedd5fd507701f82e8b8874
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
265 B
Text

export type Vector1DType = {
get: () => number;
set: (n: Vector1DType | number) => void;
add: (n: Vector1DType | number) => void;
subtract: (n: Vector1DType | number) => void;
};
export declare function Vector1D(initialValue: number): Vector1DType;