@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
9 lines • 381 B
TypeScript
import type { ToolCall } from '../types/core.js';
interface ToolConfirmationProps {
toolCall: ToolCall;
onConfirm: (confirmed: boolean) => void;
onCancel: () => void;
}
export default function ToolConfirmation({ toolCall, onConfirm, onCancel, }: ToolConfirmationProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=tool-confirmation.d.ts.map