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>
16 lines
720 B
Text
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;
|
|
}
|