Rocky_Mountain_Vending/.pnpm-store/v10/files/33/ae1281005eeadd9ab1079521dbe030e4ac7933964bbe721f6678b1276890d9bb74520477c339eb33288207d74bf84e8d3cc6ae7d64d80b4f94132f2d8f511e
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

27 lines
No EOL
943 B
Text

/**
* @param {LH.Config|undefined} config
* @param {{configPath?: string}} context
* @return {{configWorkingCopy: LH.Config, configDir?: string, configPath?: string}}
*/
export function resolveWorkingCopy(config: LH.Config | undefined, context: {
configPath?: string;
}): {
configWorkingCopy: LH.Config;
configDir?: string;
configPath?: string;
};
/**
* @param {LH.Gatherer.GatherMode} gatherMode
* @param {LH.Config=} config
* @param {LH.Flags=} flags
* @return {Promise<{resolvedConfig: LH.Config.ResolvedConfig}>}
*/
export function initializeConfig(gatherMode: LH.Gatherer.GatherMode, config?: LH.Config | undefined, flags?: LH.Flags | undefined): Promise<{
resolvedConfig: LH.Config.ResolvedConfig;
}>;
/**
* @param {LH.Config.ResolvedConfig} resolvedConfig
* @return {string}
*/
export function getConfigDisplayString(resolvedConfig: LH.Config.ResolvedConfig): string;
//# sourceMappingURL=config.d.ts.map