Rocky_Mountain_Vending/.pnpm-store/v10/files/47/fbd1b34956522c090ee95e0fa2515d67e1bff9679813579a147613d5204c5988470f0856bf64ff3b9f7e3b5a6f15f9eb8c04072cf93d0fedb0ba6115c6a315
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>;
}
/**
* 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>;