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>
11 lines
494 B
Text
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>;
|