Rocky_Mountain_Vending/.pnpm-store/v10/files/2a/c7b0ca19f1cfa3cc4ee2fa0e8883ff1fb0cbed7c3d4693b50aeddfd43c2647a316e6cd2b5e9e6c9b3f3541b305598dc74e8a8f7e3164d21b6147433e1111d8
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

33 lines
1.1 KiB
Text

import { Logger, SharedConfigFiles } from "@smithy/types";
/**
* @public
*/
export interface SharedConfigInit {
/**
* The path at which to locate the ini credentials file. Defaults to the
* value of the `AWS_SHARED_CREDENTIALS_FILE` environment variable (if
* defined) or `~/.aws/credentials` otherwise.
*/
filepath?: string;
/**
* 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;
/**
* Configuration files are normally cached after the first time they are loaded. When this
* property is set, the provider will always reload any configuration files loaded before.
*/
ignoreCache?: boolean;
/**
* For credential resolution trace logging.
*/
logger?: Logger;
}
export { CONFIG_PREFIX_SEPARATOR } from "./constants";
/**
* Loads the config and credentials files.
* @internal
*/
export declare const loadSharedConfigFiles: (init?: SharedConfigInit) => Promise<SharedConfigFiles>;