@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
15 lines • 545 B
TypeScript
export interface PendingQuestion {
question: string;
options: string[];
allowFreeform: boolean;
}
/**
* Called once from App.tsx to wire up the UI handler.
*/
export declare function setGlobalQuestionHandler(handler: (question: PendingQuestion) => Promise<string>): void;
/**
* Called from the ask_question tool's execute function.
* Returns a Promise that resolves with the user's answer string.
*/
export declare function signalQuestion(question: PendingQuestion): Promise<string>;
//# sourceMappingURL=question-queue.d.ts.map