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>
30 lines
567 B
Text
30 lines
567 B
Text
/**
|
|
* @public
|
|
*/
|
|
export declare enum IniSectionType {
|
|
PROFILE = "profile",
|
|
SSO_SESSION = "sso-session",
|
|
SERVICES = "services"
|
|
}
|
|
/**
|
|
* @public
|
|
*/
|
|
export type IniSection = Record<string, string | undefined>;
|
|
/**
|
|
* @public
|
|
*
|
|
* @deprecated Please use {@link IniSection}
|
|
*/
|
|
export interface Profile extends IniSection {
|
|
}
|
|
/**
|
|
* @public
|
|
*/
|
|
export type ParsedIniData = Record<string, IniSection>;
|
|
/**
|
|
* @public
|
|
*/
|
|
export interface SharedConfigFiles {
|
|
credentialsFile: ParsedIniData;
|
|
configFile: ParsedIniData;
|
|
}
|