Rocky_Mountain_Vending/.pnpm-store/v10/files/12/e99659d40fd5d39d92671d23f8061f1a0b23c2c3197306675dd23c325593fe72c54e096e59066c65a0ff9aa28125c6812f1ac1df0cc9fac66d6a3b4a52ce67
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

29 lines
854 B
Text

import {
AbsoluteLocation,
BuildHandlerOptions,
BuildMiddleware,
Pluggable,
RequestHandler,
} from "@smithy/types";
export interface HostHeaderInputConfig {}
interface PreviouslyResolved {
requestHandler: RequestHandler<any, any>;
}
export interface HostHeaderResolvedConfig {
requestHandler: RequestHandler<any, any>;
}
export declare function resolveHostHeaderConfig<T>(
input: T & PreviouslyResolved & HostHeaderInputConfig
): T & HostHeaderResolvedConfig;
export declare const hostHeaderMiddleware: <
Input extends object,
Output extends object
>(
options: HostHeaderResolvedConfig
) => BuildMiddleware<Input, Output>;
export declare const hostHeaderMiddlewareOptions: BuildHandlerOptions &
AbsoluteLocation;
export declare const getHostHeaderPlugin: (
options: HostHeaderResolvedConfig
) => Pluggable<any, any>;
export {};