lorehub
Version:
Capture and surface the collective wisdom of your codebase
15 lines • 409 B
TypeScript
interface SearchOptions {
query: string;
type?: string;
province?: string;
projectPath?: string;
currentProjectOnly?: boolean;
semantic?: boolean;
threshold?: number;
hybrid?: boolean;
limit?: number;
mode?: 'literal' | 'semantic' | 'hybrid';
}
export declare function renderSearch(options: SearchOptions): Promise<void>;
export {};
//# sourceMappingURL=search.d.ts.map