Rocky_Mountain_Vending/.pnpm-store/v10/files/b4/9cc80f288e0124442227dad1966d26efc538585534b88645a66b64b252749ee4c019a103cd4314a9eeb5d45041daa41da2ba66f34981459b0f6b538b15b2d5
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

18 lines
859 B
Text

import type { AwsCredentialIdentity, AwsIdentityProperties, RuntimeConfigAwsCredentialIdentityProvider } from "@aws-sdk/types";
/**
* Memoized provider chain for AWS credentials.
* The options are only reevaluated if forceRefresh=true is passed or a natural
* refresh occurs.
*
* @public
*/
export interface MemoizedRuntimeConfigAwsCredentialIdentityProvider {
(options?: AwsIdentityProperties & {
forceRefresh?: boolean;
}): Promise<AwsCredentialIdentity>;
}
/**
* @internal
*/
export declare function memoizeChain(providers: RuntimeConfigAwsCredentialIdentityProvider[], treatAsExpired: (resolved: AwsCredentialIdentity) => boolean): MemoizedRuntimeConfigAwsCredentialIdentityProvider;
export declare const internalCreateChain: (providers: RuntimeConfigAwsCredentialIdentityProvider[]) => RuntimeConfigAwsCredentialIdentityProvider;