Rocky_Mountain_Vending/.pnpm-store/v10/files/fa/9c40fbf571823d7768f7c239657e15b916fd4ddf8df4ae42f54f9e1686d27e174f85b7d4626321ce78b745f5e8d64efeca659396506187b4ff46266c87e38a
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
202 B
Text

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