Rocky_Mountain_Vending/.pnpm-store/v10/files/71/7eedfa087af9b92faa97078655b848375c22e05559e05909423da4dec868e84cf53bf038e5f114471bd71cb29449685e04a750683df8bfd2f0b2324cfb8f8e
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
247 B
Text

export type CounterType = {
get: () => number;
set: (n: number) => CounterType;
add: (n: number) => CounterType;
clone: () => CounterType;
};
export declare function Counter(max: number, start: number, loop: boolean): CounterType;