Rocky_Mountain_Vending/.pnpm-store/v10/files/f1/0a6086bb15618a1f35e3cc8e70decc3dbcec9adee216f08e6a014b4458595645fbd1c02a675bf93aa8b0410e67b95e9de801f4b0044445d39fa8496b48cd60
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

6 lines
192 B
Text

export declare class PromiseQueue {
#private;
constructor(maxConcurrency?: number);
enqueue<T>(promiseFn: () => Promise<T>): Promise<T>;
bump(promiseFn: Promise<any>): void;
}