@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
14 lines • 379 B
TypeScript
export type MessageType = 'info' | 'error' | 'success' | 'warning';
export interface NpmRegistryResponse {
version: string;
name: string;
[key: string]: unknown;
}
export interface UpdateInfo {
hasUpdate: boolean;
currentVersion: string;
latestVersion?: string;
updateCommand?: string;
updateMessage?: string;
}
//# sourceMappingURL=utils.d.ts.map