Rocky_Mountain_Vending/.pnpm-store/v10/files/2d/b7ca81aa4d680c96fec709caa0ca821a44496de3bce127ef93cf2305e4a06d196cc4bcfe95dfc341bedf184f3c8a85bde8d59c0348e99d350c3c4390716494
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

10 lines
453 B
Text

import { EndpointParameters, SerializeMiddleware } from "@smithy/types";
import { EndpointResolvedConfig } from "./resolveEndpointConfig";
import { EndpointParameterInstructions } from "./types";
/**
* @internal
*/
export declare const endpointMiddleware: <T extends EndpointParameters>({ config, instructions, }: {
config: EndpointResolvedConfig<T>;
instructions: EndpointParameterInstructions;
}) => SerializeMiddleware<any, any>;