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
550 B
Text
11 lines
550 B
Text
import { SsoProfile } from "@aws-sdk/credential-provider-sso";
|
|
import { AwsIdentityProperties } from "@aws-sdk/types";
|
|
import { IniSection, Profile } from "@smithy/types";
|
|
import { FromIniInit } from "./fromIni";
|
|
export declare const resolveSsoCredentials: (
|
|
profile: string,
|
|
profileData: IniSection,
|
|
options?: FromIniInit,
|
|
callerClientConfig?: AwsIdentityProperties["callerClientConfig"]
|
|
) => Promise<import("@aws-sdk/types").AttributedAwsCredentialIdentity>;
|
|
export declare const isSsoProfile: (arg: Profile) => arg is Partial<SsoProfile>;
|