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>
18 lines
507 B
Text
18 lines
507 B
Text
import { ParsedIniData } from "@smithy/types";
|
|
import { SharedConfigInit } from "./loadSharedConfigFiles";
|
|
/**
|
|
* @public
|
|
*/
|
|
export interface SourceProfileInit extends SharedConfigInit {
|
|
/**
|
|
* The configuration profile to use.
|
|
*/
|
|
profile?: string;
|
|
}
|
|
/**
|
|
* Load profiles from credentials and config INI files and normalize them into a
|
|
* single profile list.
|
|
*
|
|
* @internal
|
|
*/
|
|
export declare const parseKnownFiles: (init: SourceProfileInit) => Promise<ParsedIniData>;
|