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>
14 lines
454 B
Text
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;
|
|
}
|