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>
17 lines
646 B
Text
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>;
|