Rocky_Mountain_Vending/.pnpm-store/v10/files/6e/3f588ca3cb560ebd87c7d15e520986d9ed65de3debbd2ba2c14725fdfc09a2109a5d8d130d9056d3dad976dfa3c94364846903cd33d32f751b8e679d7dfcc0
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
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>;