Rocky_Mountain_Vending/.pnpm-store/v10/files/58/bdefac69b994632ea43f9901acbadf196d0318efb5938f6ab32a4ac08001f198f96c9190370baa69337f5c9d0e8aee5d2901b35808024bd71f7e22828c7243
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

8 lines
289 B
Text

/**
* Converts a comma-separated string into an array of trimmed strings
* @param str The comma-separated input string to split
* @returns Array of trimmed strings split from the input
*
* @internal
*/
export declare const getArrayForCommaSeparatedString: (str: string) => string[];