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>
14 lines
638 B
Text
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;
|
|
}
|