Rocky_Mountain_Vending/.pnpm-store/v10/files/47/e3f0804222dd78177d385b74008339d677c6d63785ea849b1bd5346988acecffb3934aeae9403be863a4be9fbb15b61b8c05c383b3ac51133b92359bc48da5
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

13 lines
672 B
Text

import type { SsoProfile } from "@aws-sdk/credential-provider-sso";
import type { AwsIdentityProperties } from "@aws-sdk/types";
import type { IniSection, Profile } from "@smithy/types";
import type { FromIniInit } from "./fromIni";
/**
* @internal
*/
export declare const resolveSsoCredentials: (profile: string, profileData: IniSection, options?: FromIniInit, callerClientConfig?: AwsIdentityProperties["callerClientConfig"]) => Promise<import("@aws-sdk/types").AttributedAwsCredentialIdentity>;
/**
* @internal
* duplicated from \@aws-sdk/credential-provider-sso to defer import.
*/
export declare const isSsoProfile: (arg: Profile) => arg is Partial<SsoProfile>;