Rocky_Mountain_Vending/.pnpm-store/v10/files/39/5bfbb8d9172314c1597269546c8a660fff133986f33f2071848e536c28c7c6f016f05769c64590eb6d7818901a2b9d0bff6e1113cd7b03ac0523b95373ba6c
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
236 B
Text

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