UNPKG

v0-ui-reviewer

Version:

Next-gen UI/UX reviewer with multi-model AI support (OpenAI, Claude, v0), style extraction, and live preview sandbox

26 lines (25 loc) 658 B
import { V0UIReviewerCLI } from './index.js'; export declare class SimpleInteractiveSession { private rl; private state; private isProcessing; constructor(reviewer: V0UIReviewerCLI, options?: { verbose?: boolean; initialUrl?: string; }); private getPrompt; private handleInput; private handleCommand; private review; private chat; private showModels; private setModel; private showHelp; private showHeader; private cleanup; start(): Promise<void>; } export declare function runSimpleInteractiveMode(options?: { verbose?: boolean; initialUrl?: string; }): Promise<void>;