Rocky_Mountain_Vending/.pnpm-store/v10/files/ba/91b23c30ed54200ee72701b76251450f08f479f52ac7df3e3ae4586b28e077a8fb21be23bbadca89850703cb5f6dabeb15e8ce942f886780061d92e6612ad3
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

35 lines
1 KiB
Text

import { AbsoluteLocation, BuildHandlerOptions, BuildMiddleware, Pluggable, RequestHandler } from "@smithy/types";
/**
* @public
*/
export interface HostHeaderInputConfig {
}
interface PreviouslyResolved {
requestHandler: RequestHandler<any, any>;
}
/**
* @internal
*/
export interface HostHeaderResolvedConfig {
/**
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
*/
requestHandler: RequestHandler<any, any>;
}
/**
* @internal
*/
export declare function resolveHostHeaderConfig<T>(input: T & PreviouslyResolved & HostHeaderInputConfig): T & HostHeaderResolvedConfig;
/**
* @internal
*/
export declare const hostHeaderMiddleware: <Input extends object, Output extends object>(options: HostHeaderResolvedConfig) => BuildMiddleware<Input, Output>;
/**
* @internal
*/
export declare const hostHeaderMiddlewareOptions: BuildHandlerOptions & AbsoluteLocation;
/**
* @internal
*/
export declare const getHostHeaderPlugin: (options: HostHeaderResolvedConfig) => Pluggable<any, any>;
export {};