| 114 | * Platform implementations: Electron uses `net.request`, Node.js uses `fetch`. |
| 115 | */ |
| 116 | export interface HttpFetcher { |
| 117 | fetchToTempFile(baseUrl: string, remoteSessionId: string, token: string, params: FetchParams): Promise<string> |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Imports a downloaded temp file into a local session database. |
no outgoing calls
no test coverage detected