Rocky_Mountain_Vending/.pnpm-store/v10/files/1c/9ce4ff62a55c1fc6a22e578d6ff7572c4d4f77a4173532aa1d01c1a26aa08bce65bfab4945314549afe5bc68fefe0e386abb5caf80444236641611c9cd0b34
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

6 lines
167 B
Text

import { Stringable } from "./stringable";
export declare class XmlText implements Stringable {
private value;
constructor(value: string);
toString(): string;
}