Rocky_Mountain_Vending/.pnpm-store/v10/files/d5/d9a5e1b6c9936dc6c37561ca698d5a6beefb9b3d16ba810c00b64735027baa0121d63dc323e9e046022cfb078acf5c722f63082c790501c7f5cda168cebf62
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

13 lines
440 B
Text

import { CodecSettings, Schema, ShapeDeserializer } from "@smithy/types";
import { SerdeContext } from "../SerdeContext";
/**
* This deserializer reads strings.
*
* @public
*/
export declare class FromStringShapeDeserializer extends SerdeContext implements ShapeDeserializer<string> {
private settings;
constructor(settings: CodecSettings);
read(_schema: Schema, data: string): any;
private base64ToUtf8;
}