lorehub
Version:
Capture and surface the collective wisdom of your codebase
15 lines • 490 B
TypeScript
import React from 'react';
import type { Database } from '../../db/database.js';
import type { Fact } from '../../core/types.js';
interface SimilarFactsViewProps {
db: Database;
fact: Fact & {
projectName: string;
projectPath: string;
isCurrentProject: boolean;
};
onBack: () => void;
}
export declare function SimilarFactsView({ db, fact, onBack }: SimilarFactsViewProps): React.JSX.Element;
export {};
//# sourceMappingURL=SimilarFactsView.d.ts.map