Rocky_Mountain_Vending/.pnpm-store/v10/files/0c/c13f0fbef6e40006eb16c1ff83f4abd3424a07d948697805e2b509faa06d5a6d9326026c69bc70c88baab5744ea223177c94058904f0858f05228cca3ff20e
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

33 lines
1.2 KiB
Text

import type { FinalizeHandler, FinalizeHandlerArguments, MetadataBearer, Provider, RetryStrategy } from "@smithy/types";
import type { DelayDecider, RetryDecider, RetryQuota } from "./types";
/**
* Strategy options to be passed to StandardRetryStrategy
* @public
* @deprecated use StandardRetryStrategy from @smithy/util-retry
*/
export interface StandardRetryStrategyOptions {
retryDecider?: RetryDecider;
delayDecider?: DelayDecider;
retryQuota?: RetryQuota;
}
/**
* @public
* @deprecated use StandardRetryStrategy from @smithy/util-retry
*/
export declare class StandardRetryStrategy implements RetryStrategy {
private readonly maxAttemptsProvider;
private retryDecider;
private delayDecider;
private retryQuota;
mode: string;
constructor(maxAttemptsProvider: Provider<number>, options?: StandardRetryStrategyOptions);
private shouldRetry;
private getMaxAttempts;
retry<Input extends object, Ouput extends MetadataBearer>(next: FinalizeHandler<Input, Ouput>, args: FinalizeHandlerArguments<Input>, options?: {
beforeRequest: Function;
afterRequest: Function;
}): Promise<{
response: unknown;
output: Ouput;
}>;
}