Rocky_Mountain_Vending/.pnpm-store/v10/files/60/e2f8d2b76685e50f0f0e4e6b29ac20292ca6cbb028881b9d8203a839cc30553a308edc68cce5a5f8e2045daa168b57e94eaa7665acb69e67877f299170e304
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

/**
* Returns the height of a given element.
*
* @param node the element
* @param client whether to use `clientHeight` if possible
*/
export default function height(node: HTMLElement, client?: boolean): number;