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

8 lines 355 B
import type { PendingQuestion } from '../utils/question-queue.js'; interface QuestionPromptProps { question: PendingQuestion; onAnswer: (answer: string) => void; } export default function QuestionPrompt({ question, onAnswer, }: QuestionPromptProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=question-prompt.d.ts.map