Rocky_Mountain_Vending/.pnpm-store/v10/files/e0/155c88dd5dcf7d00339616a755f97f5c080a6f711f7b4eaaeb50db84d6ceef60e61df86e6df33f2661ae871d2316a92bd7365f239c82896675495b2e4f081d
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

20 lines
605 B
Text

import { AwsCredentialIdentity, Profile } from "@smithy/types";
import { FromIniInit } from "./fromIni";
/**
* @internal
*/
export interface StaticCredsProfile extends Profile {
aws_access_key_id: string;
aws_secret_access_key: string;
aws_session_token?: string;
aws_credential_scope?: string;
aws_account_id?: string;
}
/**
* @internal
*/
export declare const isStaticCredsProfile: (arg: any) => arg is StaticCredsProfile;
/**
* @internal
*/
export declare const resolveStaticCredentials: (profile: StaticCredsProfile, options?: FromIniInit) => Promise<AwsCredentialIdentity>;