Rocky_Mountain_Vending/.pnpm-store/v10/files/fe/7879f5f8a095cf28a77ef70d43b8cb1e9453384cb470929ad31916b7f3063bcf0c5612722b49e5128f5e53393952497d130c2d822ccd0111a74abb6e72f194
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

21 lines
968 B
Text

import type { CodecSettings, Schema, SerdeFunctions, ShapeDeserializer } from "@smithy/types";
import { SerdeContext } from "../SerdeContext";
/**
* This deserializer is a dispatcher that decides whether to use a string deserializer
* or a codec deserializer based on HTTP traits.
*
* For example, in a JSON HTTP message, the deserialization of a field will differ depending on whether
* it is bound to the HTTP header (string) or body (JSON).
*
* @public
*/
export declare class HttpInterceptingShapeDeserializer<CodecShapeDeserializer extends ShapeDeserializer<any>> extends SerdeContext implements ShapeDeserializer<string | Uint8Array> {
private codecDeserializer;
private stringDeserializer;
constructor(codecDeserializer: CodecShapeDeserializer, codecSettings: CodecSettings);
/**
* @override
*/
setSerdeContext(serdeContext: SerdeFunctions): void;
read(schema: Schema, data: string | Uint8Array): any | Promise<any>;
}