Rocky_Mountain_Vending/.pnpm-store/v10/files/73/318cd50c44641c6e6a3170e2ee317445b7ff3287f69ba7083aadc59bfa2fc27f6b06d2cd651a340212e6f9c0472693d9be2878eb8113dee7624eb22f607b38
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

11 lines
494 B
Text

import type { AwsIdentityProperties } from "@aws-sdk/types";
import type { AwsCredentialIdentity, ParsedIniData } from "@smithy/types";
import type { FromIniInit } from "./fromIni";
/**
* @internal
*/
export declare const isLoginProfile: (data: ParsedIniData[string]) => boolean;
/**
* @internal
*/
export declare const resolveLoginCredentials: (profileName: string, options: FromIniInit, callerClientConfig?: AwsIdentityProperties["callerClientConfig"]) => Promise<AwsCredentialIdentity>;