Rocky_Mountain_Vending/.pnpm-store/v10/files/e8/414db88bcf3783cbf81b782a8447232ad8e789e880be4238d114c2f48b892fb10c57441e19a3849a48bd72b195777521d5118c32b8939d53ae337c6332f297
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

20 lines
865 B
Text

import type { Schema, SerdeFunctions, ShapeDeserializer } from "@smithy/types";
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
import type { XmlSettings } from "./XmlCodec";
/**
* @public
*/
export declare class XmlShapeDeserializer extends SerdeContextConfig implements ShapeDeserializer<Uint8Array | string> {
readonly settings: XmlSettings;
private stringDeserializer;
constructor(settings: XmlSettings);
setSerdeContext(serdeContext: SerdeFunctions): void;
/**
* @param schema - describing the data.
* @param bytes - serialized data.
* @param key - used by AwsQuery to step one additional depth into the object before reading it.
*/
read(schema: Schema, bytes: Uint8Array | string, key?: string): any;
readSchema(_schema: Schema, value: any): any;
protected parseXml(xml: string): any;
}