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>
20 lines
447 B
Text
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;
|