@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
23 lines • 544 B
TypeScript
import { ReactNode } from 'react';
export interface AssistantMessageProps {
message: string;
model: string;
}
export interface ChatQueueProps {
staticComponents?: ReactNode[];
queuedComponents?: ReactNode[];
}
export type Completion = {
name: string;
isCustom: boolean;
};
export interface ToolExecutionIndicatorProps {
toolName: string;
currentIndex: number;
totalTools: number;
}
export interface UserMessageProps {
message: string;
tokenContent?: string;
}
//# sourceMappingURL=components.d.ts.map