Rocky_Mountain_Vending/.pnpm-store/v10/files/0f/679a12450b0305853c0fa6df17df0b55be5fbae1ad04cbd5b284f0147eac59af0b285871a3fc131d7e47106798bb4acfeed6445511e2e3b1afc26a05bb8173
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
368 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;