Rocky_Mountain_Vending/.pnpm-store/v10/files/70/17ce78724ca618e504d0250bc21c420fe00fa36b2e341d606b1d15102431fad6c1574aaefcb2f4a7d07b2f3b31dbdea82e2b9c778dc84871f38fda76131643
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

19 lines
862 B
Text

import type nodeTty from "node:tty";
import { Socket } from "node:net";
export declare class WriteStream extends Socket implements nodeTty.WriteStream {
fd: number;
constructor(fd: number);
clearLine(dir: nodeTty.Direction, callback?: (() => void) | undefined): boolean;
clearScreenDown(callback?: (() => void) | undefined): boolean;
cursorTo(x: number, y?: number | undefined, callback?: (() => void) | undefined): boolean;
cursorTo(x: number, callback: () => void): boolean;
moveCursor(dx: number, dy: number, callback?: (() => void) | undefined): boolean;
getColorDepth(env?: object | undefined): number;
hasColors(count?: number | undefined): boolean;
hasColors(env?: object | undefined): boolean;
hasColors(count: number, env?: object | undefined): boolean;
getWindowSize(): [number, number];
columns: number;
rows: number;
isTTY: boolean;
}