Rocky_Mountain_Vending/.pnpm-store/v10/files/ee/fa9ed956f9757ab446f45ece8284af7748d34294fddd46842616815dbb465276acf07ffd03297deae9706532aeefb1cae7a5efbc85cb7a0c70aec1e72421a2
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

31 lines
521 B
Text

import { EventEmitter } from "node:events";
export class Interface extends EventEmitter {
terminal = false;
line = "";
cursor = 0;
getPrompt() {
return "";
}
setPrompt(prompt) {}
prompt(preserveCursor) {}
question(query, options, callback) {
callback && typeof callback === "function" && callback("");
}
resume() {
return this;
}
close() {}
write(data, key) {}
getCursorPos() {
return {
rows: 0,
cols: 0
};
}
pause() {
return this;
}
async *[Symbol.asyncIterator]() {
yield "";
}
}