@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
15 lines • 426 B
TypeScript
import type { Command } from '../types/index.js';
interface LSPProps {
status: {
initialized: boolean;
servers: Array<{
name: string;
ready: boolean;
languages: string[];
}>;
};
}
export declare function LSP({ status }: LSPProps): import("react/jsx-runtime").JSX.Element;
export declare const lspCommand: Command;
export {};
//# sourceMappingURL=lsp.d.ts.map