Rocky_Mountain_Vending/.pnpm-store/v10/files/a6/b457bc07427998cb07152456b898abf30a099c84c2af16b85e68ea6488bf794beb5ba6f63a47490fd1c580200b1c6f17d1183b5b07866821d2ef52c144ac81
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
646 B
Text

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