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>
21 lines
707 B
Text
21 lines
707 B
Text
import type { Schema as ISchema, ShapeSerializer } from "@smithy/types";
|
|
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
|
import { XmlSettings } from "./XmlCodec";
|
|
/**
|
|
* @public
|
|
*/
|
|
export declare class XmlShapeSerializer extends SerdeContextConfig implements ShapeSerializer<string | Uint8Array> {
|
|
readonly settings: XmlSettings;
|
|
private stringBuffer?;
|
|
private byteBuffer?;
|
|
private buffer?;
|
|
constructor(settings: XmlSettings);
|
|
write(schema: ISchema, value: unknown): void;
|
|
flush(): string | Uint8Array;
|
|
private writeStruct;
|
|
private writeList;
|
|
private writeMap;
|
|
private writeSimple;
|
|
private writeSimpleInto;
|
|
private getXmlnsAttribute;
|
|
}
|