Rocky_Mountain_Vending/.pnpm-store/v10/files/a2/0bd6be6051d484dee19481b8e6e00aaea01caa8fab18f39b8c31e2a3779035ccdcc0bb24069248d3102e11a11d7cb23b7b420389158b2c60a69fd5ce3c4d68
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

18 lines
685 B
Text

import { LoadedConfigSelectors } from "@smithy/node-config-provider";
import { Provider } from "@smithy/types";
export interface AwsSdkSigV4AAuthInputConfig {
sigv4aSigningRegionSet?:
| string[]
| undefined
| Provider<string[] | undefined>;
}
export interface AwsSdkSigV4APreviouslyResolved {}
export interface AwsSdkSigV4AAuthResolvedConfig {
sigv4aSigningRegionSet: Provider<string[] | undefined>;
}
export declare const resolveAwsSdkSigV4AConfig: <T>(
config: T & AwsSdkSigV4AAuthInputConfig & AwsSdkSigV4APreviouslyResolved
) => T & AwsSdkSigV4AAuthResolvedConfig;
export declare const NODE_SIGV4A_CONFIG_OPTIONS: LoadedConfigSelectors<
string[] | undefined
>;