UNPKG

lorehub

Version:

Capture and surface the collective wisdom of your codebase

17 lines 663 B
import React from 'react'; import type { Database } from '../../db/database.js'; import type { LoreType } from '../../core/types.js'; interface AddLoreProps { db: Database; realmPath: string; initialContent?: string; initialType?: LoreType; initialWhy?: string; initialProvinces?: string[]; initialSigils?: string[]; initialConfidence?: number; onComplete?: (success: boolean) => void; } export declare function AddLore({ db, realmPath, initialContent, initialType, initialWhy, initialProvinces, initialSigils, initialConfidence, onComplete, }: AddLoreProps): React.JSX.Element; export {}; //# sourceMappingURL=AddLore.d.ts.map