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>
35 lines
1 KiB
Text
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 {};
|