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>
18 lines
596 B
Text
18 lines
596 B
Text
import { RetryStrategyV2 } from "../retry";
|
|
import { Provider, RetryStrategy } from "../util";
|
|
/**
|
|
* A configuration interface with methods called by runtime extension
|
|
* @internal
|
|
*/
|
|
export interface RetryStrategyConfiguration {
|
|
/**
|
|
* Set retry strategy used for all http requests
|
|
* @param retryStrategy
|
|
*/
|
|
setRetryStrategy(retryStrategy: Provider<RetryStrategyV2 | RetryStrategy>): void;
|
|
/**
|
|
* Get retry strategy used for all http requests
|
|
* @param retryStrategy
|
|
*/
|
|
retryStrategy(): Provider<RetryStrategyV2 | RetryStrategy>;
|
|
}
|