UNPKG

v0-ui-reviewer

Version:

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

12 lines (11 loc) 316 B
import { V0UIReviewerCLI } from './index.js'; export interface InteractiveSession { reviewer: V0UIReviewerCLI; history: Array<{ type: 'url' | 'screenshot'; input: string; output?: string; timestamp: Date; }>; } export declare function runInteractiveMode(): Promise<void>;