lorehub
Version:
Capture and surface the collective wisdom of your codebase
16 lines • 597 B
TypeScript
import React from 'react';
import type { Database } from '../../db/database.js';
interface LoresViewProps {
db: Database;
realmPath: string;
initialQuery?: string;
searchMode?: 'literal' | 'semantic' | 'hybrid';
type?: string;
province?: string;
limit?: number;
filterRealmPath?: string;
currentRealmOnly?: boolean;
}
export declare function LoresView({ db, realmPath, initialQuery, searchMode: initialSearchMode, type, province, limit, filterRealmPath, currentRealmOnly, }: LoresViewProps): React.JSX.Element;
export {};
//# sourceMappingURL=LoresView.d.ts.map