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>
27 lines
734 B
Text
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 {};
|