Rocky_Mountain_Vending/.pnpm-store/v10/files/12/127e826f1ef376ef16219db9459e645d269bd689e6c8f1e5c630cfe99fe65ef30de8a4ce0867f3880fb2c91b0d706edfa03f5446118b2287af828f8352da35
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
291 B
Text

import type { ServerResponse } from 'node:http';
export declare function isAbortError(e: any): e is Error & {
name: 'AbortError';
};
export declare function pipeToNodeResponse(readable: ReadableStream<Uint8Array>, res: ServerResponse, waitUntilForEnd?: Promise<unknown>): Promise<void>;