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>
19 lines
627 B
Text
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;
|
|
}
|