Rocky_Mountain_Vending/.pnpm-store/v10/files/3e/55b8c089d63305b56d0e4ed0141c6332b733d5448c08e0b15d841f6ca08de16e414b1d7413d6f42b5a6b812da95e078d8af43417cdef70fdd6083ab4afb873
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

5 lines
187 B
Text

export type Callback<E = Error | null | undefined> = (error?: E) => void;
export type HeadersObject = {
[key: string]: string | string[] | undefined
};
export type BufferEncoding = any;