UNPKG

@nanocollective/nanocoder

Version:

A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter

14 lines 371 B
/** * ASCII progress bar component for usage visualization */ interface ProgressBarProps { percent: number; width: number; color: string; } /** * Renders an ASCII progress bar */ export declare function ProgressBar({ percent, width, color }: ProgressBarProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=progress-bar.d.ts.map