feat: proper multi-language stemming

This commit is contained in:
2026-02-11 09:39:30 +01:00
parent e66c64350f
commit 0b5efbb5e1
8 changed files with 337 additions and 73 deletions

View File

@@ -4,6 +4,14 @@ export { MediaEngine, getMediaEngine, type MediaData } from './MediaEngine';
export { SyncEngine, getSyncEngine, type SyncConfig, type SyncResult, type SyncDirection, type SyncStatus } from './SyncEngine';
export { ProjectEngine, getProjectEngine, type ProjectData } from './ProjectEngine';
export { MetaEngine, getMetaEngine } from './MetaEngine';
export {
stemText,
stemWord,
stemQuery,
prepareForFTS,
getSupportedLanguages,
type SupportedLanguage,
} from './stemmer';
export {
DropboxSyncEngine,
getDropboxSyncEngine,