Rocky_Mountain_Vending/.pnpm-store/v10/files/d7/0f6ffbccb32f12f1858e7596bddf814d15a8f3752ebf126322272e2d59ca7ce3ad14c1f54198802866c2a48e079992b6b384487bc6a8259cac04d5ef0dbfba
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

16 lines
542 B
Text

import { AwsCredentialIdentity, Profile } from "@smithy/types";
import { FromIniInit } from "./fromIni";
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;
}
export declare const isStaticCredsProfile: (
arg: any
) => arg is StaticCredsProfile;
export declare const resolveStaticCredentials: (
profile: StaticCredsProfile,
options?: FromIniInit
) => Promise<AwsCredentialIdentity>;