Rocky_Mountain_Vending/.pnpm-store/v10/files/89/6612e575ba95d7de79583a1e01b39b0da0af6fbbdb76ef90acb7b23d8809b55432acb35a045b237f48567e5daa029d73a65537154a21abde4d519d95cf2996
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

16 lines
563 B
Text

import { DefaultsMode, ResolvedDefaultsMode } from "@smithy/smithy-client";
import { 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".
*
* @default "legacy"
* @internal
*/
export declare const resolveDefaultsModeConfig: ({ defaultsMode, }?: ResolveDefaultsModeConfigOptions) => Provider<ResolvedDefaultsMode>;