Rocky_Mountain_Vending/.pnpm-store/v10/files/f2/5dea9e1e4cbac012f6f8cd3614404e598d264e808c8945f96300abc844f0f32fae80241eb310f72f2421c383b38a343ec1d3e46a146b46ff080e6c217eb869
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

19 lines
685 B
Text

import {
AwsCredentialIdentity,
AwsIdentityProperties,
RuntimeConfigAwsCredentialIdentityProvider,
} from "@aws-sdk/types";
export interface MemoizedRuntimeConfigAwsCredentialIdentityProvider {
(
options?: AwsIdentityProperties & {
forceRefresh?: boolean;
}
): Promise<AwsCredentialIdentity>;
}
export declare function memoizeChain(
providers: RuntimeConfigAwsCredentialIdentityProvider[],
treatAsExpired: (resolved: AwsCredentialIdentity) => boolean
): MemoizedRuntimeConfigAwsCredentialIdentityProvider;
export declare const internalCreateChain: (
providers: RuntimeConfigAwsCredentialIdentityProvider[]
) => RuntimeConfigAwsCredentialIdentityProvider;