Rocky_Mountain_Vending/.pnpm-store/v10/files/64/f184809b8ea86a9e312105a7c0218de569efbec46672764144004d3d74a63e944580032a19fc321d6ab755df799dda7f8287d798247f3d3f2470cd9879a913
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

10 lines
357 B
Text

import type nodeReadlinePromises from "node:readline/promises";
import type { Direction } from "node:readline";
export declare class Readline implements nodeReadlinePromises.Readline {
clearLine(dir: Direction);
clearScreenDown();
commit(): Promise<void>;
cursorTo(x: number, y?: number | undefined);
moveCursor(dx: number, dy: number);
rollback();
}