(cacheId: string)
| 42 | } |
| 43 | |
| 44 | async openDir(cacheId: string): Promise<{ success: boolean; error?: string }> { |
| 45 | return post<{ success: boolean; error?: string }>('/cache/open-dir', { cacheId }) |
| 46 | } |
| 47 | |
| 48 | async showInFolder(filePath: string): Promise<{ success: boolean; error?: string }> { |
| 49 | return post<{ success: boolean; error?: string }>('/cache/show-in-folder', { filePath }) |