Rocky_Mountain_Vending/.pnpm-store/v10/files/95/246fbc4ecfcbe3821f2c014370681fc8614afba4be735cb558e7e0927c55cc6f74706aa5bf3733c42478df1ed566bac43621c3c690593c00347566e216f39c
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

15 lines
626 B
Text

import { Schema, SerdeFunctions, ShapeDeserializer } from "@smithy/types";
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
import { XmlSettings } from "./XmlCodec";
export declare class XmlShapeDeserializer
extends SerdeContextConfig
implements ShapeDeserializer<Uint8Array | string>
{
readonly settings: XmlSettings;
private stringDeserializer;
constructor(settings: XmlSettings);
setSerdeContext(serdeContext: SerdeFunctions): void;
read(schema: Schema, bytes: Uint8Array | string, key?: string): any;
readSchema(_schema: Schema, value: any): any;
protected parseXml(xml: string): any;
}