Rocky_Mountain_Vending/.pnpm-store/v10/files/0a/1b9509c92ffca28b9b662f0b8d7a43749ed031b723cce67d5eb151ef3e3c1452027600f3a04ab00f1f66f74e7748fe2bad309878ae8a11dfe6be99a4572678
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 width of a given element.
*
* @param node the element
* @param client whether to use `clientWidth` if possible
*/
export default function getWidth(node: HTMLElement, client?: boolean): number;