Rocky_Mountain_Vending/.pnpm-store/v10/files/da/d9d48046ecca67040879cf6723affdd0cfd5ad3a9c97b8353f22778798afc38707a8b5d976be7bde4037539a57945fc4eec91f2148f2aeaa98fe86f290cdf3
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

16 lines
578 B
Text

import { Codec, CodecSettings } from "@smithy/types";
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
import { JsonShapeDeserializer } from "./JsonShapeDeserializer";
import { JsonShapeSerializer } from "./JsonShapeSerializer";
export type JsonSettings = CodecSettings & {
jsonName: boolean;
};
export declare class JsonCodec
extends SerdeContextConfig
implements Codec<string, string>
{
readonly settings: JsonSettings;
constructor(settings: JsonSettings);
createSerializer(): JsonShapeSerializer;
createDeserializer(): JsonShapeDeserializer;
}