UNPKG

chromancer

Version:

A powerful command-line interface for automating Chrome browser using Playwright. Perfect for web scraping, automation, testing, and browser workflows.

38 lines (37 loc) 816 B
export interface WorkflowStepResult { stepNumber: number; command: string; args: any; success: boolean; output?: string; error?: string; duration: number; } export interface WorkflowExecutionResult { success: boolean; totalSteps: number; successfulSteps: number; failedSteps: number; steps: WorkflowStepResult[]; totalDuration: number; } export interface SavedWorkflow { id: string; name: string; description?: string; prompt: string; yaml: string; createdAt: string; updatedAt: string; tags?: string[]; executions?: number; lastExecuted?: string; versions?: WorkflowVersion[]; } export interface WorkflowVersion { version: number; yaml: string; prompt: string; createdAt: string; reason?: string; }