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

14 lines 450 B
import type { useTheme } from '../hooks/useTheme.js'; import type { FlatNode } from '../utils/file-tree.js'; export interface FileExplorerProps { onClose: () => void; } export type ViewMode = 'tree' | 'preview'; export interface TreeItemProps { item: FlatNode; isHighlighted: boolean; isSelected: boolean; selectedFiles: Set<string>; colors: ReturnType<typeof useTheme>['colors']; } //# sourceMappingURL=file-explorer.d.ts.map