@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
17 lines • 688 B
TypeScript
interface VSCodeExtensionPromptProps {
onComplete: () => void;
onSkip: () => void;
}
/**
* Ink component that prompts the user to install the VS Code extension
* when running with --vscode flag and the extension isn't installed
*/
export declare function VSCodeExtensionPrompt({ onComplete, onSkip, }: VSCodeExtensionPromptProps): import("react/jsx-runtime").JSX.Element | null;
/**
* Check if we should show the extension install prompt
* Returns true if --vscode flag is present
* The component itself will check if it's already installed
*/
export declare function shouldPromptExtensionInstall(): boolean;
export {};
//# sourceMappingURL=vscode-extension-prompt.d.ts.map