Rocky_Mountain_Vending/.pnpm-store/v10/files/59/f99a876ee7090143d9cb666ce8b5efbdffb2235f36e7d54d341c6d434d456cdcaf19aa6ec4c4ff207c0374cb05f03b3c43cf91af2dbf0b3440fc135352deca
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

11 lines
230 B
Text

import { Stringable } from "./stringable";
/**
* @internal
*
* Represents an XML text value.
*/
export declare class XmlText implements Stringable {
private value;
constructor(value: string);
toString(): string;
}