Rocky_Mountain_Vending/.pnpm-store/v10/files/21/e512e215ea6af3b6f7ba267e808987e3432eba3e6cf909b25399e8535cfdb3394fa40b9dd8174e86890bf821cb524783ee7de21c3724defd95285b71460576
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

14 lines
638 B
Text

import type { 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;
}