Rocky_Mountain_Vending/.pnpm-store/v10/files/80/fa6aae6e86884dfad4accf50afbb71802c21177a6bdb68a243748c6ac073524ac4f9499a7aff9634a1d92a518bd80e727e3b3c1ef2fc55fe23f38287259cf6
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

7 lines
345 B
Text

import { Parser, ParserOptions } from './parser';
import { MessageFormatElement } from './types';
export declare function parse(message: string, opts?: ParserOptions): MessageFormatElement[];
export * from './types';
export type { ParserOptions };
export declare const _Parser: typeof Parser;
export { isStructurallySame } from './manipulator';