Rocky_Mountain_Vending/.pnpm-store/v10/files/48/462cc45d67caaf1fce6d1184c1296e35a5e1a30b1201e4ce583957a9f818abc8dbfe83787e5fe5f3c4cac703acbce243de14d830126a5d70ca52265fb78c14
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
984 B
Text

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