Rocky_Mountain_Vending/.pnpm-store/v10/files/be/ba5eb416db0f70d79666032d45dd187c370462ba3afa8d51ea43de4bcaffbd3cefe325043c13cc7ddeaa3adfc8e7c228e3e031c73100b09a5b993e8fc7c7d1
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

12 lines
280 B
Text

export type NodeRectType = {
top: number;
right: number;
bottom: number;
left: number;
width: number;
height: number;
};
export type NodeRectsType = {
measure: (node: HTMLElement) => NodeRectType;
};
export declare function NodeRects(): NodeRectsType;