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>
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
import type { ChecksumConfiguration } from "./checksum";
|
|
/**
|
|
* @deprecated will be replaced by DefaultExtensionConfiguration.
|
|
* @internal
|
|
*
|
|
* Default client configuration consisting various configurations for modifying a service client
|
|
*/
|
|
export interface DefaultClientConfiguration extends ChecksumConfiguration {
|
|
}
|
|
/**
|
|
* @deprecated will be removed for implicit type.
|
|
*/
|
|
type GetDefaultConfigurationType = (runtimeConfig: any) => DefaultClientConfiguration;
|
|
/**
|
|
* @deprecated moving to @smithy/smithy-client.
|
|
* @internal
|
|
*
|
|
* Helper function to resolve default client configuration from runtime config
|
|
*
|
|
*/
|
|
export declare const getDefaultClientConfiguration: GetDefaultConfigurationType;
|
|
/**
|
|
* @deprecated will be removed for implicit type.
|
|
*/
|
|
type ResolveDefaultRuntimeConfigType = (clientConfig: DefaultClientConfiguration) => any;
|
|
/**
|
|
* @deprecated moving to @smithy/smithy-client.
|
|
* @internal
|
|
*
|
|
* Helper function to resolve runtime config from default client configuration
|
|
*/
|
|
export declare const resolveDefaultRuntimeConfig: ResolveDefaultRuntimeConfigType;
|
|
export {};
|