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

12 lines 566 B
import { type BashExecutionState } from '../services/bash-executor.js'; interface BashProgressProps { executionId: string; command: string; /** If provided, renders a static completed state without event subscription */ completedState?: BashExecutionState; /** If true, renders with reduced margins for live display */ isLive?: boolean; } export default function BashProgress({ executionId, command, completedState, isLive, }: BashProgressProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=bash-progress.d.ts.map