Rocky_Mountain_Vending/.pnpm-store/v10/files/94/edfbc84f610698c9ba9fb3b9f7810cd17b3949a0272e3d8bba52064e11ec578e2f0679bfe386359704407143b060e1d1d6a05f8cd46393fa577bba983ca4a9
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

8 lines
200 B
Text

export interface RetryableProvider<T> {
(): Promise<T>;
}
export declare const retryWrapper: <T>(
toRetry: RetryableProvider<T>,
maxRetries: number,
delayMs: number
) => RetryableProvider<T>;