Rocky_Mountain_Vending/.pnpm-store/v10/files/e6/736153f5f893e281025f80672714e91f8142563b51912a0886a6b2fb37f48a75d0f51efd6feb3039b7c9435d9cab91ac1df1336b383522e684151b32ed6c1b
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

27 lines
734 B
Text

import type { Provider } from "@smithy/types";
import { AccountIdEndpointMode } from "./AccountIdEndpointModeConstants";
/**
* @public
*/
export interface AccountIdEndpointModeInputConfig {
/**
* The account ID endpoint mode to use.
*/
accountIdEndpointMode?: AccountIdEndpointMode | Provider<AccountIdEndpointMode>;
}
/**
* @internal
*/
interface PreviouslyResolved {
}
/**
* @internal
*/
export interface AccountIdEndpointModeResolvedConfig {
accountIdEndpointMode: Provider<AccountIdEndpointMode>;
}
/**
* @internal
*/
export declare const resolveAccountIdEndpointModeConfig: <T>(input: T & AccountIdEndpointModeInputConfig & PreviouslyResolved) => T & AccountIdEndpointModeResolvedConfig;
export {};