Rocky_Mountain_Vending/.pnpm-store/v10/files/1a/38ff068298bb14e6ca847b09b29f3fb706ee24152714dbc417d66a9a8feb19b493dc56cf5e8987145b7202522bfbb0dd100821c4ceb3bee2aee9fa8b42eb89
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

9 lines
254 B
Text

import type nodeTty from "node:tty";
import { Socket } from "node:net";
export declare class ReadStream extends Socket implements nodeTty.ReadStream {
fd: number;
constructor(fd: number);
isRaw: boolean;
setRawMode(mode: boolean);
isTTY: boolean;
}