Rocky_Mountain_Vending/.pnpm-store/v10/files/10/131cc6bd2fcaec4d840fe101a81d6165c98db35ab812ba4a1dd09f5cfa59f0227a57d45fd0d4dd81eccccce5ce89f67d4298cc92d3d1746c9c2fcc7f570f37
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

5 lines
140 B
Text

export declare class AsyncCallbackSet {
private callbacks;
add(callback: () => Promise<void>): void;
runAll(): Promise<void>;
}