UNPKG

arela

Version:

AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.

28 lines 911 B
#!/usr/bin/env node import { Command } from "commander"; declare const program: Command; /** * Run command types and handlers (exported for testing) */ export interface RunCommandOptions { url?: string; flow: string; headless?: boolean; record?: boolean; analyze?: boolean; aiPilot?: boolean; goal?: string; platform?: string; device?: string; app?: string; webFallback?: boolean; } export type RunCommandHandler = (platform: string, opts: RunCommandOptions) => Promise<void>; export declare class UnsupportedPlatformError extends Error { readonly platform: string; constructor(platform: string); } export declare function handleRunCommand(platform: string, opts: RunCommandOptions): Promise<void>; export declare function buildRunCommand(programInstance: Command, handler?: RunCommandHandler): Command; export { program }; //# sourceMappingURL=cli.d.ts.map