Rocky_Mountain_Vending/.pnpm-store/v10/files/66/ef5c3de434ec61703129c15e771e1628ef8987279b1e4f7df630a770d32436a340fccd9a04ca8041c9959dd9149917df999dc3781b75bd4c100134b8dc46a4
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
487 B
Text

import type { 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>;