Restore UI functionalities and clean up dependencies

This commit is contained in:
streaper2
2026-05-08 08:32:58 +02:00
parent 8946955f76
commit 0895b7d5bc
26751 changed files with 4207476 additions and 158 deletions

View File

@@ -0,0 +1,17 @@
/**
* Atomically write an invalidation marker.
*
* Because attempting to delete currently open cache files could cause issues,
* actual deletion of files is deferred until the next start-up (in
* `checkFileSystemCacheInvalidationAndCleanup`).
*
* In the case that no database is currently open (e.g. via a separate CLI
* subcommand), you should call `cleanupFileSystemCache` *after* this to eagerly
* remove the cache files.
*/
export declare function invalidateFileSystemCache(cacheDirectory: string): Promise<void>;
/**
* Called during startup. See if the cache is in a partially-completed
* invalidation state. Finds and delete any invalidated cache files.
*/
export declare function checkFileSystemCacheInvalidationAndCleanup(cacheDirectory: string): Promise<void>;