(request: ProtonDriveHTTPClientBlobRequest)
| 1 | export interface ProtonDriveHTTPClient { |
| 2 | fetchJson(request: ProtonDriveHTTPClientJsonRequest): Promise<Response>; |
| 3 | fetchBlob(request: ProtonDriveHTTPClientBlobRequest): Promise<Response>; |
| 4 | } |
| 5 | |
| 6 | export type ProtonDriveHTTPClientJsonRequest = ProtonDriveHTTPClientBaseRequest & { |
no outgoing calls
no test coverage detected