Rocky_Mountain_Vending/.pnpm-store/v10/files/c2/d5aaffa02fe77ecd4223af1404f882a5baa42c8eb3d40cf2a819feff1996ae4c995a87449bfaf8091b3a49dd84ba40e215f3837f3d90dd3c447a2d7aea8156
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
707 B
Text

import type { Schema as ISchema, ShapeSerializer } from "@smithy/types";
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
import { XmlSettings } from "./XmlCodec";
/**
* @public
*/
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;
}