Rocky_Mountain_Vending/.pnpm-store/v10/files/f6/d7271c0ce717c669d8940e40ce12a290dba3043455d56cc2a4dfac987409adcb3c373568dadd8c62b09f9c529cb9cf365f4f1673b56d76461e4d4f12a08567
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
377 B
Text

/**
* Attempts to extract the name of the variable that the functional selector is looking for.
* Improves readability over the raw Function.toString() value.
* @internal
* @param functionString - function's string representation.
*
* @returns constant value used within the function.
*/
export declare function getSelectorName(functionString: string): string;