Rocky_Mountain_Vending/.pnpm-store/v10/files/8b/a217457e6f7420fd80e5665e7eff4e5caae2f9a33d67249008a100961053046bae20ac7665306a880d61387d25ff4f070b2446e4b36960c6a3912476217fee
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

21 lines
661 B
Text

import { Schema as ISchema, ShapeSerializer } from "@smithy/types";
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
import { XmlSettings } from "./XmlCodec";
export declare class XmlShapeSerializer
extends SerdeContextConfig
implements ShapeSerializer<string | Uint8Array>
{
readonly settings: XmlSettings;
private stringBuffer?;
private byteBuffer?;
private buffer?;
constructor(settings: XmlSettings);
write(schema: ISchema, value: unknown): void;
flush(): string | Uint8Array;
private writeStruct;
private writeList;
private writeMap;
private writeSimple;
private writeSimpleInto;
private getXmlnsAttribute;
}