Rocky_Mountain_Vending/.pnpm-store/v10/files/d7/19376b949e08e9b8dfe24a70999f91a67c885840519c607967e132ee6ff82b4e83acfa162e4965bd4a231d3f288c1f5ab295feb56144a7787383dcc7cc7dc9
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

14 lines
445 B
Text

import type { CodecSettings, Schema, ShapeSerializer } from "@smithy/types";
import { SerdeContext } from "../SerdeContext";
/**
* Serializes a shape to string.
*
* @public
*/
export declare class ToStringShapeSerializer extends SerdeContext implements ShapeSerializer<string> {
private settings;
private stringBuffer;
constructor(settings: CodecSettings);
write(schema: Schema, value: unknown): void;
flush(): string;
}