@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
14 lines (13 loc) • 512 B
TypeScript
import type { IndexDocument, SearchIndex, SearchResult, SectionInfo } from "./types.js";
export declare class DocsSearch {
private miniSearch;
private documents;
private sections;
constructor();
loadIndex(indexData: SearchIndex): void;
search(query: string, limit?: number, section?: string): SearchResult[];
getPage(docPath: string): IndexDocument | undefined;
listSections(): SectionInfo[];
getBySection(section: string): IndexDocument[];
get documentCount(): number;
}