Rocky_Mountain_Vending/.pnpm-store/v10/files/b3/5d614ee70fbb561b7dfb09221c45f78660dfcd06c2e2ea5997630fa547486c7b4e7d02dbeb1f7e9781936858f74d96576f403ae1a2012ba18b9ecbec5fbbdb
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

13 lines
212 B
Text

/**
Matches any [primitive value](https://developer.mozilla.org/en-US/docs/Glossary/Primitive).
@category Type
*/
export type Primitive =
| null
| undefined
| string
| number
| boolean
| symbol
| bigint;