Rocky_Mountain_Vending/.pnpm-store/v10/files/b0/819b391f392ed36b76271a544b5d128bc4b2dba1d1f28e4ae14bd556adb2d9d55218ae940affcc0a7dd6d4dd7ecba5c5d750273672acfb068e03a4bcfd9a20
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

6 lines
457 B
Text

import type { HandlerExecutionContext, SerializeHandler, SerializeHandlerArguments } from "@smithy/types";
import type { PreviouslyResolved } from "./schema-middleware-types";
/**
* @internal
*/
export declare const schemaSerializationMiddleware: (config: PreviouslyResolved) => (next: SerializeHandler<any, any>, context: HandlerExecutionContext) => (args: SerializeHandlerArguments<any>) => Promise<import("@smithy/types").SerializeHandlerOutput<any>>;