Rocky_Mountain_Vending/.pnpm-store/v10/files/c0/08d0ac05aa7e3ae286d825ca7cee5f813896856c0bb5c6eb7deab46e3e8b13461c96181e1e9607e9a714ccaedfc9a66e5ea6156fd152401a9b3b88e28d302c
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

20 lines
654 B
Text

import { AccountIdEndpointMode } from "@aws-sdk/core/account-id-endpoint";
import { AwsHandlerExecutionContext } from "@aws-sdk/types";
import {
AwsCredentialIdentityProvider,
BuildHandlerArguments,
Provider,
RetryStrategy,
RetryStrategyV2,
} from "@smithy/types";
type PreviouslyResolved = Partial<{
credentials?: AwsCredentialIdentityProvider;
accountIdEndpointMode?: Provider<AccountIdEndpointMode>;
retryStrategy?: Provider<RetryStrategy | RetryStrategyV2>;
}>;
export declare function checkFeatures(
context: AwsHandlerExecutionContext,
config: PreviouslyResolved,
args: BuildHandlerArguments<any>
): Promise<void>;
export {};