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
691 B
Text
18 lines
691 B
Text
import { Provider, RetryStrategy, RetryStrategyConfiguration, RetryStrategyV2 } from "@smithy/types";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export type PartialRetryRuntimeConfigType = Partial<{
|
|
retryStrategy: Provider<RetryStrategyV2 | RetryStrategy>;
|
|
}>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const getRetryConfiguration: (runtimeConfig: PartialRetryRuntimeConfigType) => {
|
|
setRetryStrategy(retryStrategy: Provider<RetryStrategyV2 | RetryStrategy>): void;
|
|
retryStrategy(): Provider<RetryStrategyV2 | RetryStrategy>;
|
|
};
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const resolveRetryRuntimeConfig: (retryStrategyConfiguration: RetryStrategyConfiguration) => PartialRetryRuntimeConfigType;
|