Rocky_Mountain_Vending/.pnpm-store/v10/files/dc/7c850d2bc834bea3af1cecafe279c501df99e3c98fba7c9aff6334754738a9211fdc8f5cf17fea770930dce95a87add7b60190598e3084cf42756075e3dc14
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

13 lines
588 B
Text

import type { DocumentType, Schema, ShapeDeserializer } from "@smithy/types";
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
import { JsonSettings } from "./JsonCodec";
/**
* @public
*/
export declare class JsonShapeDeserializer extends SerdeContextConfig implements ShapeDeserializer<string> {
readonly settings: JsonSettings;
constructor(settings: JsonSettings);
read(schema: Schema, data: string | Uint8Array | unknown): Promise<any>;
readObject(schema: Schema, data: DocumentType): any;
protected _read(schema: Schema, value: unknown): any;
}