Rocky_Mountain_Vending/.pnpm-store/v10/files/35/d6139535693798536000419e51abbd4342d3dbd5e41eac7fc9aef3ca12a9eb65c6398484c37517bc4e37ee028770db980b73e4f629a941650f94eaabe7cdad
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

7 lines
216 B
Text

/**
* Toggles a CSS class on a given element.
*
* @param element the element
* @param className the CSS class name
*/
export default function toggleClass(element: Element | SVGElement, className: string): void;