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>
20 lines
252 B
Text
20 lines
252 B
Text
export class Readline {
|
|
clearLine(dir) {
|
|
return this;
|
|
}
|
|
clearScreenDown() {
|
|
return this;
|
|
}
|
|
commit() {
|
|
return Promise.resolve();
|
|
}
|
|
cursorTo(x, y) {
|
|
return this;
|
|
}
|
|
moveCursor(dx, dy) {
|
|
return this;
|
|
}
|
|
rollback() {
|
|
return this;
|
|
}
|
|
}
|