Rocky_Mountain_Vending/.pnpm-store/v10/files/a8/f2e3c796c0f1dcc21281cf2e6ac8a97b233cb00d2743bd6b36c4dd0d7be0cccd330782aa0618c3ed31fb0b59fe24f4bfd7799e3ccf68b5170f468d3c09f71e
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

23 lines
1.1 KiB
Text

import { CodecSettings, ConfigurableSerdeContext, Schema as ISchema, SerdeFunctions, ShapeSerializer } from "@smithy/types";
import { ToStringShapeSerializer } from "./ToStringShapeSerializer";
/**
* This serializer decides whether to dispatch to a string serializer or a codec serializer
* depending on HTTP binding traits within the given schema.
*
* For example, a JavaScript array is serialized differently when being written
* to a REST JSON HTTP header (comma-delimited string) and a REST JSON HTTP body (JSON array).
*
* @public
*/
export declare class HttpInterceptingShapeSerializer<CodecShapeSerializer extends ShapeSerializer<string | Uint8Array>> implements ShapeSerializer<string | Uint8Array>, ConfigurableSerdeContext {
private codecSerializer;
private stringSerializer;
private buffer;
constructor(codecSerializer: CodecShapeSerializer, codecSettings: CodecSettings, stringSerializer?: ToStringShapeSerializer);
/**
* @override
*/
setSerdeContext(serdeContext: SerdeFunctions): void;
write(schema: ISchema, value: unknown): void;
flush(): string | Uint8Array;
}