Rocky_Mountain_Vending/.pnpm-store/v10/files/71/b52432531182d8a993eeb744ce6b495a706e3f6211047ebba8ead579ca8442dcaa8e2da5ef00ff08456598b0a50214640f89c86e7dd13c4aba1fb51a3c90c8
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

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 {};