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>
16 lines
578 B
Text
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;
|
|
}
|