Rocky_Mountain_Vending/.pnpm-store/v10/files/09/872dbf89dde11e8f1cbf3280fc485308ff19cd3e6c2a553a4fbb0b005f6b59d2878ee1e675167992fd92f72e61b847808c1797fd6917c2ae918aba621df63f
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

17 lines
625 B
Text

import { Codec, CodecSettings } from "@smithy/types";
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
import { XmlShapeDeserializer } from "./XmlShapeDeserializer";
import { XmlShapeSerializer } from "./XmlShapeSerializer";
export type XmlSettings = CodecSettings & {
xmlNamespace: string;
serviceNamespace: string;
};
export declare class XmlCodec
extends SerdeContextConfig
implements Codec<Uint8Array | string, Uint8Array | string>
{
readonly settings: XmlSettings;
constructor(settings: XmlSettings);
createSerializer(): XmlShapeSerializer;
createDeserializer(): XmlShapeDeserializer;
}