Rocky_Mountain_Vending/.pnpm-store/v10/files/45/f6e310cc6592dab2615de94a4af48da6c2cc38444938eb23b19f6fd3e1b81c4dcfcf18719b8926c33dca1a8a7bc06da3bacb0190235d1a185bc8b5c957eed5
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

20 lines
447 B
Text

/**
* @public
*/
export declare enum RETRY_MODES {
STANDARD = "standard",
ADAPTIVE = "adaptive"
}
/**
* @public
*
* The default value for how many HTTP requests an SDK should make for a
* single SDK operation invocation before giving up
*/
export declare const DEFAULT_MAX_ATTEMPTS = 3;
/**
* @public
*
* The default retry algorithm to use.
*/
export declare const DEFAULT_RETRY_MODE = RETRY_MODES.STANDARD;