UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

23 lines (22 loc) • 703 B
interface CliLiveRow { update(message: string, detail?: string): void; stop(): void; } interface CliLiveRowLogger { log(message: string): void; } interface CliLiveRowOutput { readonly columns?: number; readonly isTTY?: boolean; write(chunk: string): unknown; } interface CliLiveRowOptions { readonly output?: CliLiveRowOutput; readonly pulseSequence?: string; readonly animate?: boolean; readonly elapsed?: boolean; readonly logPhases?: boolean; } /** Starts one transient row, falling back to phase logs when repainting is unavailable. */ export declare function startCliLiveRow(logger: CliLiveRowLogger, options?: CliLiveRowOptions): CliLiveRow; export {};