Rocky_Mountain_Vending/.pnpm-store/v10/files/44/9e6f44a6959f1ac1e34e8afa00695371c12e8fb200bd1a7aee33f831c3fb812d85e5abf0352e70f1dd7992daef212ebdc02e56d9666be690ce3a96b5b8b873
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

3 lines
215 B
Text

declare type TraverseDirection = 'parentElement' | 'previousElementSibling' | 'nextElementSibling';
export default function collectElements(node: Element | null, direction: TraverseDirection): Element[];
export {};