Rocky_Mountain_Vending/.pnpm-store/v10/files/b5/e6a06c7e144a567768e1050e1b6ede42b7fb450ca1bd5468756a35667f4d4f432fbed4979ce78aac6581d21d4d234afacc1956445fafc7249b6933e161a442
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

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 {};