Rocky_Mountain_Vending/.pnpm-store/v10/files/4b/747e0ff364191dd94aaec59a12d4bd367a20c65dc26fdc876fea627e6d5b911525a2391576f70745562c391ff3c1fff1dfd569c005e89797a8a38a41989b75
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 { 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 {};