(projectId: string, updates: Partial<Project>)
| 305 | }, |
| 306 | |
| 307 | async update(projectId: string, updates: Partial<Project>) { |
| 308 | if (!isElectron()) throw new Error('Electron API not available'); |
| 309 | return window.electronAPI.projects.update(projectId, updates); |
| 310 | }, |
| 311 | |
| 312 | async delete(projectId: string) { |
| 313 | if (!isElectron()) throw new Error('Electron API not available'); |
no test coverage detected