Rocky_Mountain_Vending/.pnpm-store/v10/files/7f/10c186de39df0bd280659fef1cd502d9dc686ea42cde463b64a38039ae7f1c75bcca4ff0d55c73c767711c2c0b66898d6d358870f5dd9bcc9395e005095689
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

9 lines
460 B
Text

import type { DeserializeHandler, DeserializeHandlerArguments, HandlerExecutionContext } from "@smithy/types";
import type { PreviouslyResolved } from "./schema-middleware-types";
/**
* @internal
*/
export declare const schemaDeserializationMiddleware: <O>(config: PreviouslyResolved) => (next: DeserializeHandler<any, any>, context: HandlerExecutionContext) => (args: DeserializeHandlerArguments<any>) => Promise<{
response: unknown;
output: O;
}>;