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>
19 lines
685 B
Text
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;
|