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
602 B
Text
20 lines
602 B
Text
import { InitializeHandlerOptions, InitializeMiddleware, Pluggable, Provider } from "@smithy/types";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface PreviouslyResolved {
|
|
region: Provider<string>;
|
|
followRegionRedirects: boolean;
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare function regionRedirectMiddleware(clientConfig: PreviouslyResolved): InitializeMiddleware<any, any>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const regionRedirectMiddlewareOptions: InitializeHandlerOptions;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const getRegionRedirectMiddlewarePlugin: (clientConfig: PreviouslyResolved) => Pluggable<any, any>;
|