(cacheId: string)
| 32 | export interface CacheServiceAdapter { |
| 33 | getInfo(): Promise<CacheInfo> |
| 34 | clear(cacheId: string): Promise<{ success: boolean; error?: string; message?: string }> |
| 35 | getDataDir(): Promise<DataDirInfo> |
| 36 | setDataDir( |
| 37 | path: string | null, |
no outgoing calls