Rocky_Mountain_Vending/.pnpm-store/v10/files/f7/363b36c83c52c3d1917e37f2181add38a15b33e88eef203181ae5ca92ecf0c24bd523a8afc4f4e4983376ac45fb1823d045a0428c7a2919bbb3bbc803a9f43
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

16 lines
720 B
Text

import type { Schema, ShapeSerializer } from "@smithy/types";
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
import type { QuerySerializerSettings } from "./QuerySerializerSettings";
/**
* @public
*/
export declare class QueryShapeSerializer extends SerdeContextConfig implements ShapeSerializer<string | Uint8Array> {
readonly settings: QuerySerializerSettings;
private buffer;
constructor(settings: QuerySerializerSettings);
write(schema: Schema, value: unknown, prefix?: string): void;
flush(): string | Uint8Array;
protected getKey(memberName: string, xmlName?: string): string;
protected writeKey(key: string): void;
protected writeValue(value: string): void;
}