Rocky_Mountain_Vending/.pnpm-store/v10/files/85/0caff766181c0429309f0d6a02d810c58b24035f8063f7dc35ddb53a7ca67862d01d1aa892a965c10d0594354c666d4a45ef875113c8c961fbc92dbb453f68
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

17 lines
499 B
Text

import { ParsedIniData } from "@smithy/types";
/**
* Subset of {@link SharedConfigInit}.
* @internal
*/
export interface SsoSessionInit {
/**
* The path at which to locate the ini config file. Defaults to the value of
* the `AWS_CONFIG_FILE` environment variable (if defined) or
* `~/.aws/config` otherwise.
*/
configFilepath?: string;
}
/**
* @internal
*/
export declare const loadSsoSessionData: (init?: SsoSessionInit) => Promise<ParsedIniData>;