Rocky_Mountain_Vending/.pnpm-store/v10/files/dd/5c9346b4847cb70ea89a43ea91732fc5dcdb8d614adfb00fe31f40566ea2febb267517313e1bec3a37db0bdd7b14cdbbfaedca06b93819494b9255fe0ea857
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
679 B
Text

import { Schema, ShapeSerializer } from "@smithy/types";
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
import { QuerySerializerSettings } from "./QuerySerializerSettings";
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;
}