(adapter: SessionRuntimeAdapter, sessionId: string)
| 49 | } |
| 50 | |
| 51 | export function rebuildFts(adapter: SessionRuntimeAdapter, sessionId: string) { |
| 52 | const db = adapter.ensureWritable(sessionId) |
| 53 | return rebuildFtsIndex(db) |
| 54 | } |
| 55 | |
| 56 | export interface SessionIndexStatusItem { |
| 57 | sessionId: string |
nothing calls this directly
no test coverage detected