Rocky_Mountain_Vending/.pnpm-store/v10/files/75/be999679935ca91b1be9ef0dab8f423e0cc0bb85e21ae0e9ffaedd0658afa966781af0d6f0a16e0f32bc373d260183d6c34404057cb4ffd13ce2b1d50c9681
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

10 lines
212 B
Text

/**
* @internal
*/
export interface RetryableProvider<T> {
(): Promise<T>;
}
/**
* @internal
*/
export declare const retry: <T>(toRetry: RetryableProvider<T>, maxRetries: number) => Promise<T>;