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 { Lore } from '../../core/types.js';
interface SimilarLoresViewProps {
db: Database;
lore: Lore & {
realmName: string;
realmPath: string;
isCurrentRealm: boolean;
};
onBack: () => void;
}
export declare function SimilarLoresView({ db, lore: lore, onBack }: SimilarLoresViewProps): React.JSX.Element;
export {};
//# sourceMappingURL=SimilarLoresView.d.ts.map