Rocky_Mountain_Vending/.pnpm-store/v10/files/d6/3826695d72b8fbe9f7027a820ad3bf340401b17cb0dcecbe8a68bf7f929072f75138a35de91f28c4fbb3b8864b733cd68f76ad3825c46061c10146440cb61e
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
557 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".
*
* @default "legacy"
* @internal
*/
export declare const resolveDefaultsModeConfig: ({ defaultsMode, }?: ResolveDefaultsModeConfigOptions) => Provider<ResolvedDefaultsMode>;