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>
11 lines
426 B
Text
11 lines
426 B
Text
/**
|
|
* @internal
|
|
*
|
|
* Given an input string, splits based on the delimiter after a given
|
|
* number of delimiters has been encountered.
|
|
*
|
|
* @param value - The input string to split.
|
|
* @param delimiter - The delimiter to split on.
|
|
* @param numDelimiters - The number of delimiters to have encountered to split.
|
|
*/
|
|
export declare function splitEvery(value: string, delimiter: string, numDelimiters: number): Array<string>;
|