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>
21 lines
710 B
Text
21 lines
710 B
Text
import { AwsHandlerExecutionContext } from "@aws-sdk/types";
|
|
import {
|
|
AbsoluteLocation,
|
|
BuildHandler,
|
|
BuildHandlerOptions,
|
|
HandlerExecutionContext,
|
|
MetadataBearer,
|
|
Pluggable,
|
|
} from "@smithy/types";
|
|
import { UserAgentResolvedConfig } from "./configurations";
|
|
export declare const userAgentMiddleware: (
|
|
options: UserAgentResolvedConfig
|
|
) => <Output extends MetadataBearer>(
|
|
next: BuildHandler<any, any>,
|
|
context: HandlerExecutionContext | AwsHandlerExecutionContext
|
|
) => BuildHandler<any, any>;
|
|
export declare const getUserAgentMiddlewareOptions: BuildHandlerOptions &
|
|
AbsoluteLocation;
|
|
export declare const getUserAgentPlugin: (
|
|
config: UserAgentResolvedConfig
|
|
) => Pluggable<any, any>;
|