Rocky_Mountain_Vending/.pnpm-store/v10/files/a0/3c5fb20bb2fcf439fd4f28fcf69ff50e51df69af00bbd2c840587eb48532a9baee53c02040edc61c07a8cac0412691c143e42bc611b1b7ff69f115795d826a
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
454 B
Text

import { 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;
}