vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
14 lines • 419 B
TypeScript
export declare class ProgressIndicator {
private spinner;
private startTime;
start(message?: string): void;
update(message: string): void;
success(message?: string): void;
fail(message?: string): void;
warn(message?: string): void;
stop(): void;
isRunning(): boolean;
private getDuration;
}
export declare const progress: ProgressIndicator;
//# sourceMappingURL=progress.d.ts.map