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

10 lines 418 B
export type ConfigLocation = 'project' | 'global'; interface LocationStepProps { onComplete: (location: ConfigLocation) => void; onBack?: () => void; projectDir: string; configFileName?: string; } export declare function LocationStep({ onComplete, onBack, projectDir, configFileName, }: LocationStepProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=location-step.d.ts.map