Rocky_Mountain_Vending/.pnpm-store/v10/files/3b/829bc11863cd504fa253046b25f7394d05b371f72db1a65ec8fc01302861a2c6ac0eb9ab9df075eec37e9c39d2a1216a9c751521c19936ae77af88f7d08981
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
427 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;