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>
18 lines
831 B
Text
18 lines
831 B
Text
import type { AccountIdEndpointMode } from "@aws-sdk/core/account-id-endpoint";
|
|
import type { AwsHandlerExecutionContext } from "@aws-sdk/types";
|
|
import type { AwsCredentialIdentityProvider, BuildHandlerArguments, Provider, RetryStrategy, RetryStrategyV2 } from "@smithy/types";
|
|
/**
|
|
* @internal
|
|
*/
|
|
type PreviouslyResolved = Partial<{
|
|
credentials?: AwsCredentialIdentityProvider;
|
|
accountIdEndpointMode?: Provider<AccountIdEndpointMode>;
|
|
retryStrategy?: Provider<RetryStrategy | RetryStrategyV2>;
|
|
}>;
|
|
/**
|
|
* @internal
|
|
* Check for features that don't have a middleware activation site but
|
|
* may be detected on the context, client config, or request.
|
|
*/
|
|
export declare function checkFeatures(context: AwsHandlerExecutionContext, config: PreviouslyResolved, args: BuildHandlerArguments<any>): Promise<void>;
|
|
export {};
|