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

6 lines
293 B
Text

/**
* Makes a simple GET request and returns the entire response as a Buffer.
* - Throws if the response status is not 200.
* - Applies a 3000 ms timeout when `isDev` is `true`.
*/
export declare function fetchResource(url: string, isDev: boolean, errorMessage?: string): Promise<Buffer>;