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>
20 lines
654 B
Text
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 {};
|