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>
8 lines
289 B
Text
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[];
|