Rocky_Mountain_Vending/.pnpm-store/v10/files/fa/140d8e75ba12220c1c7024ed2fc94bbedbae9548074dad6effb6ed8a66ea640bf686c2b12c61d775a140a2c8d7876d726edd3bca0ceb72456bb3af330ca793
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

17 lines
639 B
Text

import type { DefaultsMode, ResolvedDefaultsMode } from "@smithy/smithy-client";
import type { Provider } from "@smithy/types";
/**
* @internal
*/
export interface ResolveDefaultsModeConfigOptions {
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
}
/**
* Validate the defaultsMode configuration. If the value is set to "auto", it
* resolves the value to "mobile" if the app is running in a mobile browser,
* otherwise it resolves to "standard".
*
* @default "legacy"
* @internal
*/
export declare const resolveDefaultsModeConfig: ({ defaultsMode, }?: ResolveDefaultsModeConfigOptions) => Provider<ResolvedDefaultsMode>;