Rocky_Mountain_Vending/.pnpm-store/v10/files/92/67efb648ec3ebd5239524a8cf198efc3a522be01decea69cb9306c266816b6fbeb2488bd8083f7d432820c121e47e4ccc9c6ab4be884b2d6f2983c375420fc
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

29 lines
761 B
Text

import type NodeHttp from "node:http";
import { Socket } from "node:net";
import { Readable } from "node:stream";
export declare class IncomingMessage extends Readable implements NodeHttp.IncomingMessage {
__unenv__: {};
aborted: boolean;
httpVersion: string;
httpVersionMajor: number;
httpVersionMinor: number;
complete: boolean;
connection: Socket;
socket: Socket;
headers: NodeHttp.IncomingHttpHeaders;
trailers: {};
method: string;
url: string;
statusCode: number;
statusMessage: string;
closed: boolean;
errored: Error | null;
readable: boolean;
constructor(socket?: Socket);
get rawHeaders();
get rawTrailers(): unknown;
setTimeout(_msecs: number, _callback?: () => void);
get headersDistinct();
get trailersDistinct();
_read();
}