Rocky_Mountain_Vending/.pnpm-store/v10/files/c5/c92a2154d1347e033250f8029449824d706c932bbad4ca9d297c4138a80a29337356e8bee32d8f2f6a04bd215a6ecaffa9889f501c21eb4f0f1f0bf18ff8e8
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

9 lines
334 B
Text

/**
* Check if the given string is a single complex grapheme. A complex grapheme is one that
* is made up of multiple characters.
*/
export declare function isSingleComplexGrapheme(value: string): boolean;
/**
* Check if the given string is a single grapheme.
*/
export declare function isSingleGrapheme(value: string): boolean;