Rocky_Mountain_Vending/.pnpm-store/v10/files/7b/bcdcb8bcc8e411134f1355604560374e50ab8c476bd9e3561c709b826c9ee03ba0afd3a6e3d0d1c1793c3dffc635d13103bd2e1606e7d53b0c80a0d175a87b
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
215 B
Text

/**
* Runs `querySelectorAll` on a given element.
*
* @param element the element
* @param selector the selector
*/
export default function qsa(element: HTMLElement | Document, selector: string): HTMLElement[];