(_: IpcMainInvokeEvent)
| 11 | let uploadProgress = { loaded: 0, total: 0 }; |
| 12 | |
| 13 | export async function getUploadProgress(_: IpcMainInvokeEvent): Promise<{ loaded: number; total: number; }> { |
| 14 | return uploadProgress; |
| 15 | } |
| 16 | |
| 17 | let activeUploadController: AbortController | null = null; |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected