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>
22 lines
700 B
Text
22 lines
700 B
Text
import { HttpHandler } from "@smithy/protocol-http";
|
|
import {
|
|
BodyLengthCalculator,
|
|
BuildHandlerOptions,
|
|
BuildMiddleware,
|
|
Pluggable,
|
|
RequestHandler,
|
|
} from "@smithy/types";
|
|
interface PreviouslyResolved {
|
|
runtime: string;
|
|
requestHandler?: RequestHandler<any, any, any> | HttpHandler<any>;
|
|
bodyLengthChecker?: BodyLengthCalculator;
|
|
expectContinueHeader?: boolean | number;
|
|
}
|
|
export declare function addExpectContinueMiddleware(
|
|
options: PreviouslyResolved
|
|
): BuildMiddleware<any, any>;
|
|
export declare const addExpectContinueMiddlewareOptions: BuildHandlerOptions;
|
|
export declare const getAddExpectContinuePlugin: (
|
|
options: PreviouslyResolved
|
|
) => Pluggable<any, any>;
|
|
export {};
|