Rocky_Mountain_Vending/.pnpm-store/v10/files/6b/11063ae16673847b2f677db97eb2cbef1390d4302fc04dda44f234bf0f87cf513ac79701325c86da44eb17cc56259cb6c91f2a5248a7368180a8c973bd4d2b
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

12 lines
694 B
Text

import { HttpHandler } from "@smithy/protocol-http";
import type { 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 {};