Rocky_Mountain_Vending/.pnpm-store/v10/files/47/18b0a73132b16de7786535ec6899e56e08f83f08b717d69adbc972fcebf6e38b6ea1181b85020133e38a4c0b8ff6a41370219acce036f6003b866553cc2f13
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

5 lines
197 B
Text

/**
* Formats an array of values into a string that can be used error messages.
* ["a", "b", "c"] => "`a`, `b`, `c`"
*/
export declare const formatAvailableValues: (values: string[]) => string;