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
800 B
Text
18 lines
800 B
Text
import { AbsoluteLocation, FinalizeHandler, FinalizeRequestHandlerOptions, HandlerExecutionContext, MetadataBearer, Pluggable } from "@smithy/types";
|
|
import { RetryResolvedConfig } from "./configurations";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const retryMiddleware: (options: RetryResolvedConfig) => <Output extends MetadataBearer = MetadataBearer>(next: FinalizeHandler<any, Output>, context: HandlerExecutionContext) => FinalizeHandler<any, Output>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const retryMiddlewareOptions: FinalizeRequestHandlerOptions & AbsoluteLocation;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const getRetryPlugin: (options: RetryResolvedConfig) => Pluggable<any, any>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const getRetryAfterHint: (response: unknown) => Date | undefined;
|