Rocky_Mountain_Vending/.pnpm-store/v10/files/5f/70cea4edc3babf4da2e559e67b516edb10b51d1d0debfc4bb9410782c16b106c975004139e8b9858fc66094186b9a21571bee1f0f06df37195b84198a225b1
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

19 lines
627 B
Text

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