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>
17 lines
499 B
Text
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>;
|