Rocky_Mountain_Vending/.pnpm-store/v10/files/72/c9eea5712814b36886e8b18f2c61be9b4e48d5235977def12a859ddc1b57a507e4a4d4b2fec727963adb4b8ee4362742b15f95c55937c8702cc9d71c26d4cc
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

22 lines
758 B
Text

import { NormalizedSchema } from "@smithy/core/schema";
import { Schema, ShapeSerializer } from "@smithy/types";
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
import { JsonSettings } from "./JsonCodec";
export declare class JsonShapeSerializer
extends SerdeContextConfig
implements ShapeSerializer<string>
{
readonly settings: JsonSettings;
protected buffer: any;
protected useReplacer: boolean;
protected rootSchema: NormalizedSchema | undefined;
constructor(settings: JsonSettings);
write(schema: Schema, value: unknown): void;
writeDiscriminatedDocument(schema: Schema, value: unknown): void;
flush(): string;
protected _write(
schema: Schema,
value: unknown,
container?: NormalizedSchema
): any;
}