Rocky_Mountain_Vending/.pnpm-store/v10/files/2d/60f6a644ce6e7cb75b1756a9cc8738e89d01a7f3c4cd0feb224864b6a046789e6c9d71613c2ddbca9e45ca4cd37509e088b1616989e0c2598388b11b3efc6a
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
432 B
Text

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