Rocky_Mountain_Vending/.pnpm-store/v10/files/e4/fbca3e842754b84774926d8cc179ef0045bf8efc318485e54425152636489e256cf9c5bd015e4d4c947a951adc00e34d9c5e33e5c88ae2723bdcbed6d558a9
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

23 lines
987 B
Text

import type { FinalizeHandler, FinalizeHandlerArguments, MetadataBearer, Provider } from "@smithy/types";
import type { RateLimiter } from "@smithy/util-retry";
import type { StandardRetryStrategyOptions } from "./StandardRetryStrategy";
import { StandardRetryStrategy } from "./StandardRetryStrategy";
/**
* @public
* Strategy options to be passed to AdaptiveRetryStrategy
*/
export interface AdaptiveRetryStrategyOptions extends StandardRetryStrategyOptions {
rateLimiter?: RateLimiter;
}
/**
* @public
* @deprecated use AdaptiveRetryStrategy from @smithy/util-retry
*/
export declare class AdaptiveRetryStrategy extends StandardRetryStrategy {
private rateLimiter;
constructor(maxAttemptsProvider: Provider<number>, options?: AdaptiveRetryStrategyOptions);
retry<Input extends object, Ouput extends MetadataBearer>(next: FinalizeHandler<Input, Ouput>, args: FinalizeHandlerArguments<Input>): Promise<{
response: unknown;
output: Ouput;
}>;
}